What is destructuring, conceptually?
assigning properties of an object to individual variables
What is the syntax for Object destructuring?
let {
property1: variable1,
property2: variable2
} = object;
What is the syntax for Array destructuring?
let [var1, var2, etc.] = array
How can you tell the difference between destructuring and creating Object/Array literals?
syntax, the equal sign comes after the brackets