Prototypes and Prototype chaining/Inheritance in javascript
Prototype:
In JavaScript, objects have a special hidden property [[Prototype]] (as named in the specification), that is either null or references another object. That object is called “a prototype”
Prototype inheritance:
When we read a property from ...
mrsun.hashnode.dev2 min read