Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<body>
<h1>JavaScript Arrays</h1>
<h2>The Rest Property</h2>
<p>... allows us to destruct an array and collect the leftovers:</p>
<p id="demo"></p>
<script>
let a, rest;
const arr1 = [1,2,3,4,5,6,7,8];
[a, ...rest] = arr1;
document.getElementById("demo").innerHTML = "The rest is: " + rest;
</script>
</body>
</html>