What is an object in JavaScript?
Objects group together a set of variables and functions to create a model
of a something you would recognize from the real world.
How do you create an object literal?
var obj = {};
What is a property in relation to JavaScript objects? it is a variable of an object
when properties contain special characters and selection of properties using variables
How do you remove a property from an object?
delete keyword object.property