Properties
File Location
javascript-library
└── 0-PreWork
└── 1-Fundamentals
└── 10-Objects
01-properties.js <----You will be working in this file.An object with no properties
var empty_object = {};Object Literal with two properties
var movie = {
//These are properties
name : "The Godfather",
director: "Martin Scorsese"
};Nested properties
Challenges
Last updated