What is an object in JavaScript?
containers for named values called properties or methods
How do you create an object literal?
create a variable
and list values inside separated by commas.
What is a property in relation to JavaScript objects?
A variable that is part that stores data within the object .
When should you use bracket notation over dot notation with objects?
when property name is a variable.
characters that can’t be used with dot notation
How do you remove a property from an object?
delete then use dot notation to specify what is being deleted.