C2. Inheritance
There are several inheritance-related topics in JavaScript:
Constructor functions - constructors as factories for instances, similar to classes in other languages.
Constructor
prototypeproperty - prototypical inheritance.constructorproperty - reference to constructor function.instanceofoperator - checking prototype chain.Enforce usage of
new- how to guarantee that constructor function called withnew.
Last updated
Was this helpful?