how to expand an object into variables code example
Example 1: destructure to object
({x: oof.x, y: oof.y} = foo);
Example 2: array destructuring in javascript
const array = ['ismail', 'sulman'];
// array destructuring
const [firstElement, secondElement] = array;
console.log(firstElement, secondElement);
const secondArray = ['ismail', 'naeem', 'Mr', 1];
const [firstEl, secondEl, ...array1] = secondArray;
console.log(firstEl, secondEl, array1);