What is destructuring, conceptually?
an alternative way to assign values of properties to variables
What is the syntax for Object destructuring?
let {propertyName1: variable1, propertyName2: variable2} = object
What is the syntax for Array destructuring?
const arr = [1,2,3]
let [x, y, z] = arr;
you can use commas to skip indexes
let [x,,z] == arr
How can you tell the difference between destructuring and creating Object/Array literals?
if you’re creating curly braces are on the right, if you’re destructing they’re on the left.