1. How could you destructure array elements? code example
Example: destructure array javascript
var [first, second, ...rest] = ["Mercury", "Earth", ...planets, "Saturn"];
var [first, second, ...rest] = ["Mercury", "Earth", ...planets, "Saturn"];