Borrowing a Constructor
One more way of implementing inheritance (the last one in the chapter, I promise) has to do again with constructor functions, and not the objects directly. In this pattern the constructor of the child calls the constructor of the parent using either of the call() or apply() methods. This can be called stealing a constructor, or borrowing a constructor if you want to be more subtle about it.
call() and apply() were discussed in Chapter 4, but here's a refresher: they allow you to call a function and pass an object that the function should bind to its this value. So for inheritance purposes, the child constructor calls the parent's constructor and binds child's newly-created this object as the parent's this.
Let's have ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access