February 2018
Intermediate to advanced
298 pages
8h 22m
English
We can also extract property values from nested objects, that is, objects within objects. The following example demonstrates this:
var {name, otherInfo: {age}} = {name: "Eden", otherInfo: {age:
23}};
console.log(name, age); //Eden 23
Read now
Unlock full access