`

Destructuring - Draft

let obj1 = { a: 1, b: 2 };
let { a, b } = x;

let arr1 = [10, 20];
let [c, d] = arr1;