What is destructuring, conceptually?
The destructuring assignment syntax is a JavaScript expression that makes it possible to unpack values from arrays, or properties from objects, into distinct variables.
What is the syntax for Object destructuring?
const {property name} = object name
What is the syntax for Array destructuring?
const [names] = array
How can you tell the difference between destructuring and creating Object/Array literals?
Destructing: object to right of operator and curly/square braces to the left
Creating: curly/square braces to the right