What is destructuring conceptually?
A neat way of assigning values, objects or arrays to variables.
What is the syntax for Object destructuring?
let {
property1,
property2
} = object;
property one becomes a variable with the value within the object.
console.log(property1)What is the syntax for Array destructuring?
let [
arrayIndex0,
arrayIndex1
] = array;
How can you tell the difference between destructuring and creating Object/Array literals?
The pattern of creating new variables, Object/Array is extracting data from existing Object/Array.