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
JavaScript simple alert on Click
How to change the height of Textarea on click?
How to the length of the longest word in the provided sentence?
JavaScript check if first string contains all characters of second string
How to change text color on click using JavaScript?
What's the difference between let and var?