What is destructuring, conceptually?
taking object and arrays and converting it into a smaller object, arrays, and even variables.
What is the syntax for Object destructuring?
const {property name: variable name} = object name you want to destruct
What is the syntax for Array destructuring?
const [variable names that we want to take out]= array name we want to destruct
How can you tell the difference between destructuring and creating Object/Array literals?
If it is happening on the left (it is destructering) if it is on the right side it is defining.