Modular Javascript #6 - Classical Inheritance & OOP with JS
In this video, we will start covering object oriented programming in Javascript. There are several ways to do it - the first is called “classical inheritance“.
Here’s the link to the “inherit“ function I use here:
#L634-L644
Using a constructor, a prototoype, and the “new“ keyword, we can create multiple copies or “instances“ of a module, each with unique properties, but shared functionality.
We can also implement inheritance in Javascri
54 views
252
236
9 years ago 00:05:18 54
Modular Javascript #5 - PubSub Implementation
9 years ago 00:09:29 78
Modular Javascript - Prototypal Pattern vs Classical OOP in JS
9 years ago 00:21:41 120
Modular Javascript #2 - Converting jQuery to an Object Literal Module