Prototype
โ Model blueprint Object to Delegate methods & properties, link via __proto__
, to mimic "classical" OOP Inheritance
Constructor Function
โ function to programmatically create Object (& link via __proto__
after Instantiation with new
)
Static Method
โ Method attach to Constructor Function (NOT Delegate via __proto__
)
instanceof
โ JS Operator to return boolean
if __proto__
(of Constructor Function) exists on calling Operand's prototype chain
Instance Method
โ Method to Delegate via __proto__
Object.create()
โ Static Method to manually link Object to another as __proto__