What does the new operator do?
lets developers create an instance of a user-defined object type or of one of the built-in object types that has a constructor function.
What property of JavaScript functions can store shared behavior for instances created with new?
prototype property - which defines a property that is shared by all objects created with that function
You can add a shared property to a previously defined object type by using the prototype property
What does the instanceof operator do?
Operator tests to see if the prototype property of a constructor appears anywhere in the prototype chain of an object. The return value is a boolean value.