Nested ObjectsObjects inside objects. Nested Objects Values in an object can be another object. myObj = { name:"John", age:30, cars: { car1:"Ford", car2:"BMW", car3:"Fiat" } } You can access nested objects using the dot notation or the bracket notation. ExamplemyObj.cars.car2;Try it Yourself PreviousNext