What is destructuring, conceptually?
taking values out of an object/array and assigning them to a variable
What is the syntax for Object destructuring?
const { property: var1, property2: Var2, …etc ) = Object. (if the var and title match you can do: const {property, property2, …. etc) = object.
What is the syntax for Array destructuring?
const [var 1, var2, var 3,…. etc] = Array
How can you tell the difference between destructuring and creating Object/Array literals?
Arrays have [], Objects have {};