classjs icon indicating copy to clipboard operation
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...

Results 4 classjs issues
Sort by recently updated
recently updated
newest added

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...