What are objects used for?
store varius data types in a specific keyed collection to make a more complex value
What are object properties?
values associated with the object created
Describe object literal notation.
array of key:value pairs that are separated by a comma and begin with a curly bracket and end with a curly bracket
How do you remove a property from an object?
use the delete key word Infront of the object key / property
What are the two ways to get or update the value of a property?
using bracket notation and adding or changing the key word to something that exists or doesn’t exist or by using the dot notation in the same way.