What are objects used for?
Group together a set of variables and functions to create a model of something you would recognize from the real world
What are object properties?
Variables that are part of an object; tell us about the object
Describe object literal notation.
Variable keyword, object name, assignment operator, curly braces and property value pairs (separated by commas) inside the curly braces
How do you remove a property from an object?
Delete keyword followed by the object name and property name
What are the two ways to get or update the value of a property?
Dot notation (object.property) and bracket notation (object[‘property’]) assigned to the value