What does the new operator do?
creates an instance of object from the constructor function(user-defined or built-in object).
What property of JavaScript functions can store shared behavior for instances created with new?
constructor
What does the instanceof operator do?
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.