what is nested object code example
Example 1: nested objects javascript
var backPack = {
color: 'black',
straps: 4,
isHeavy: true,
wallet: {
cash: '$10,000',
creditCards: 6
}
tablet: {
brand: 'Apple iPad',
buttons: 1
}
};
Example 2: javascript nested objects
Do my eyes decieve me, or is the second answer the same as the first, but
with more upvotes?