Prototype โ Model blueprint Object to Delegate methods & properties, link via __proto__, to mimic "classical" OOP Inheritance
__proto__โ
[[ ]] property on all objects, link to Constructor Function
<Object\>.prototype === <Object\>.__proto__
.isPrototypeOf()โ
return boolean if <calling object> prototype of linked object
Referencesโ
Prototypal Inheritanceโ Link for all Object to their Prototype, to mimic Inheritance access to Method & propsArrayโ Global Object Prototype for Array data typenewโ JS Operatorto call Constructor Function, assignthiskeyword & link to PrototypePrototype Chainโ Series of links to connect Object to Prototype; to mimic Inheritance