how to nest objects in an object code example
Example: nested objects javascript
var backPack = {
color: 'black',
straps: 4,
isHeavy: true,
wallet: {
cash: '$10,000',
creditCards: 6
}
tablet: {
brand: 'Apple iPad',
buttons: 1
}
};