Accessing Nested Objects
Summary
- sub-properties of objects can be accessed by chaining together dot or bracket notation.
Final Code
var myStorage = {
"car": {
"inside": {
"glove box": "maps",
"passenger seat": "crumbs"
},
"outside": {
"trunk": "jack"
}
}
};
var gloveBoxContents = myStorage.car.inside["glove box"];