Initializers
File Location
javascript-library
└── 0-PreWork
└── 1-Fundamentals
└── 11-Objects
01-properties.js
02-enumeration.js
03-initializers.js <----You will be working in this file.How Objects are Created
// Object is created using the literal notation.
let johnSmith = {
firstName: "John",
lastName: "Smith",
age: 25,
eyeColor: 'blue'
};Practice
Challenge
Last updated