Object Oriented Programming in JavaScript, Part 2
Last time (Traditional Object Oriented Programming in JavaScript), we showed you how to use JavaScript’s class syntax to make your code more readable and less error-prone; this time, we’ll take a look at how we can use it to do the things you’re used to in object oriented programming: inheritance, polymorphism, and more.
For the workbooks, you’ll need to understand inheritance and polymorphism. The code Framework uses these features a lot.
Read more…