What are objects used for?
group together a set of variables and functions to create a model of a something
What are object properties?
Variables stored within an object or keywords for information within an object
Describe object literal notation.
variable
Object (curly braces)
keys and values separated with :
commas between each property or method
How do you remove a property from an object?
delete operator
What are the two ways to get or update the value of a property?
dot notation
Bracket notation