array destructuring default value code example
Example 1: destructuring arrays with rest operator
const [q, r, ...callThisAnythingYouWant] = [1, 2, 3, 4, 5, 6, 7, 8];
console.log(q, r);
console.log(callThisAnythingYouWant);
Example 2: javascript deconstruct object
const objA = {
prop1: 'foo',
prop2: {
prop2a: 'bar',
prop2b: 'baz',
},
};
const { prop1, prop2: { prop2a, prop2b } } = objA;
console.log(prop1);
console.log(prop2a);
console.log(prop2b);
Example 3: object destructuring default value
let a, b;
[a=5, b=7] = [1];
console.log(a);
console.log(b);