Destructuring objects
It helps pull incoming objects apart.
city: "Costa Mesa",
state: "CA",
zip: 92444
let {city: c, state: s, zip: z} = address;
log(c, s, z); // 'Costa Mesa CA 92444'
Simpler way
You can also use it like
var person = {name: 'Aaron', age: 35};
displayPerson(person);
function displayPerson({name = "No Name provided", age = 0}) {
// do something with name and age to display them
}
Irrefutable pattern
The destructuring must match the object or else it will throw an error.
let {a: x} = {} // throw
let ?{a: x} = {} // x = undefined
let {?a: x} = {} // x = undefined
let {?a: x} = 0 // throw
Patterns w/ Default Values
let person = {
age: "35",
address: {
city: "Salt Lake City",
state: "UT",
zip: 84115
}
};
let {name, age, address: {city, state, zip}} = person; // this won't create address, but will create city, state, zip