What is array destructuring?
Extract elements from arrays into variables.
Example:
let [first, second] = [10, 20];
console.log(first, second); // 10 20
Extract elements from arrays into variables.
Example:
let [first, second] = [10, 20];
console.log(first, second); // 10 20