What are objects used for?
Group together sets of variables and functions to create a model of something.
What are object properties?
Describe some aspect of the object (i.e. “color” of a car)
Describe object literal notation.
Object stored in a variable, and within curly braces, you have the properties that contain a key with its value separated by a colon, and each property separated with a comma (but not after the last value)
How do you remove a property from an object?
Keyword Delete object.property
What are the two ways to get or update the value of a property?
Dot notation or by using brackets