July 2008
Beginner
356 pages
6h 8m
English
In this chapter you learned quite a few ways (patterns) for implementing inheritance. The different types can roughly be divided into:
You can also classify the patterns based on whether they:
|
Method |
Name |
Example |
Classification |
Notes |
|---|---|---|---|---|
|
1 |
Prototype chaining (pseudo-classical) |
Child.prototype = new Parent(); |
Works with constructors Uses the prototype chain |
The default mechanism described in the ECMA standard. Tip: move all properties/methods that are meant to be reused to the prototype, and add the non-reusable as own properties |
|
2 |
Inherit only the prototype |
Child.prototype = Parent.prototype; ... |
Read now
Unlock full access