Using Javascript's ES6 or node, you can do the following:
<!DOCTYPE html>
<html>
<body>
<div id="test"></div>
<script>
var [a,b,c,d] = [0,1,2,3];
document.getElementById("test").innerHTML = a + b + c + d;
</script>
<div id="test1"></div>
<script>
const person = { name: 'John Doe', age: 23, id: 1 };
let {name, age, id} = person;
document.getElementById("test1").innerHTML = name + age + id;
</script>
<div id="test2"></div>
<script>
let [x, y, z] = Array(3).fill(0);
document.getElementById("test2").innerHTML = x + y + z;
</script>
</body>
</html>
Most Helpful This Week
How to current URL, HOST and URL attributes using JavaScript or jQuery?
jQuery example of scroll to top
JavaScript example to change image on click
Highlight and get the details of table row on click using JavaScript
How to scroll page to 1000px from top on page load using jQuery?
How to check a variable is undefined in JavaScript?