scrimba
Learn Basic JavaScript
Accessing Nested Objects
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Accessing Nested Objects
AboutCommentsNotes
Accessing Nested Objects
Expand for more info
index.js
run
preview
console
// Setup
var myStorage = {
"car": {
"inside": {
"glove box": "maps",
"passenger seat": "crumbs"
},
"outside": {
"trunk": "jack"
}
}
};

var gloveBoxContents = undefined; // Change this line

console.log(gloveBoxContents)
Console
"frank"
,
index.html
-0:49