classjs
classjs copied to clipboard
Class.js is a JavaScript library for building class based object-oriented programms using JavaScript's prototypal inheritance. It strives to mimic classical class inheritance provided by other languag...
I cannot call this.parent(args) in initialize function.
The word "programms" in the GitHub description should be written as "programs".
http://ejohn.org/blog/simple-javascript-inheritance/
instanceof does not refer to its original instance: var Animal = new Class(); // should not be instanceof class var Human = new Class(Animal); // should be instanceof Animal this...