What are objects used for?
to store multiple pieces of data
What are object properties?
association between property and value
Describe object literal notation.
var (name) {
(property) : (value)
}
How do you remove a property from an object?
delete (object).(property)
What are the two ways to get or update the value of a property?
(object).(property) = (value)
object.[(property)] = (value)