Inheritance
โ (Paradigm) to share properties & methods of parent class to child classes
Inheritance allows reuse of **logic & model of **relationships
a child class extends a parent class
Referencesโ
Prototype
โ Model blueprint Object to Delegate methods & properties, link via__proto__
, to mimic "classical" OOP InheritancePrototype Chain
โ Series of links to connect Object to Prototype; to mimic InheritancePrototypal Inheritance
โ Link for all Object to their Prototype, to mimic Inheritance access to Method & props