A sample webapp which shows how to implement inheritance in JavaScript in many different ways, including the most common ways in classical and prototypal inheritance.
- classical-es5: plain old ES5 JavaScript, through the usage of Constructors.
- classical-jsface: classical inheritance using https://github.com/tnhu/jsface
- classical-es6: using the new class feature in ES6.