What are the two ways to get or update the value of a property?
Dot notation or square brackets
How do you remove a property from an object?
Use delete operator.
What are objects used for?
To group and store a set of data (variables and/or functions).
Simply: “It’s a box to keep related stuff together.”
What are object properties?
Another way to store data that is exclusive to the object.
Object properties tell us about the object.
Describe object literal notation.
Object literal notation is curly braces { } . Within the curly braces, properties and/or methods are nested inside. Each are separated by a comma.