What is destructuring, conceptually?
destructuring assigns properties of an object or elements of an array to individual variables
What is the syntax for Object destructuring?
const or let {
propName,
PropName2,
PropName3
} = objectName;What is the syntax for Array destructuring?
const [,,,prop4] = arrayName
How can you tell the difference between destructuring and creating Object/Array literals?
the assignement operator comes at the end for destructuring