What are objects used for?
storing information in key/value pairs
What are object properties?
key/value pairs containing variables/functions/etc for the object
Describe object literal notation.
var objectExample = {
key: value,
key: value,
};
How do you remove a property from an object?
delete objectName.propertyName;
also works with bracket notation
What are the two ways to get or update the value of a property?
dot notation: objectName.propertyName
bracket notation: objectName[‘propertyName’]