What does the new operator do?
creates a new object when new is called with the constructor function
What property of JavaScript functions can store shared behavior for instances created with new?
prototype property
What does the instanceof operator do?
test to see if the prototype property of a constructor appears in the prototype chain of an object and returns a boolean value