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