Prototypes and Prototype chaining/Inheritance in javascript
Jan 10, 2023 · 2 min read · 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 ...
Join discussion

