What are objects used for?
represent something that has key-value storage related to each other in some form
What are object properties?
variables (tell us about the object)
Describe object literal notation.
curly braces and key-value pairs
var person = {
firstName: 'Marley',
lastName: 'Doughty' }How do you remove a property from an object?
delete operator objectName.property
ex)
delete person.firstName
What are the two ways to get or update the value of a property?
dot notation or bracket notation
ex) person.age = ‘24’
ex) person[‘age’] = ‘24’