DEV Community

Discussion on: Prototypal Inheritance In JavaScript

Collapse
 
jonrandy profile image
Jon Randy 🎖️

JS only has prototypal inheritance. What appears to be familiar class based inheritance is really only syntactic sugar on top of the prototype model underneath

Collapse
 
tarun_geek profile image
Tarun Nagpal

Yes you are right.

New JavaScript developers should have a look at this closely.

It clarify all the things under the hood.