const myStorage = {
'car': {
'inside': {
'glove box': 'maps',
'passenger seat': 'crumbs'
},
'outside': {
'trunk': 'jack'
}
}
};
I can understand 'glove box' is the property and its value is 'maps', but what about 'car', 'inside' and 'outside'. Are they also properties or the values of car? I can recognise with a comma that we have two objects here, but where do these start. Please elaborate on this.