What is destructuring, conceptually?
allows you to destructure properties of an object or elements of an array into individual variables.
What is the syntax for Object destructuring?
let //or const {
property1: variable1, // property key
property2: variable2
} = object;
What is the syntax for Array destructuring?
variable keyword [ var ] = arrayName
How can you tell the difference between destructuring and creating Object/Array literals?
var name on the right (destructuring)
on the left (creating Obj)