Destructuring objects

    It helps pull incoming objects apart.

    1. city: "Costa Mesa",
    2. state: "CA",
    3. zip: 92444
    4. let {city: c, state: s, zip: z} = address;
    5. log(c, s, z); // 'Costa Mesa CA 92444'

    Simpler way

    You can also use it like

    1. var person = {name: 'Aaron', age: 35};
    2. displayPerson(person);
    3. function displayPerson({name = "No Name provided", age = 0}) {
    4. // do something with name and age to display them
    5. }

    Irrefutable pattern

    The destructuring must match the object or else it will throw an error.

    1. let {a: x} = {} // throw
    2. let ?{a: x} = {} // x = undefined
    3. let {?a: x} = {} // x = undefined
    4. let {?a: x} = 0 // throw

    Patterns w/ Default Values

    1. let person = {
    2. age: "35",
    3. address: {
    4. city: "Salt Lake City",
    5. state: "UT",
    6. zip: 84115
    7. }
    8. };
    9. let {name, age, address: {city, state, zip}} = person; // this won't create address, but will create city, state, zip