bigboomshakala
Member since Mar 8, 2014
- Profile: /members/11679-bigboomshakala.htm
- URL: http://falola.developpez.com
- Comments: 1
Recent Blog Comments By bigboomshakala
-
Experimenting With Multiple Class Inheritance In Javascript
Posted on Mar 8, 2014 at 1:28 PM
Hi, Agree with Artavazd, it's not inheritance. The proof : console.log(ben instanceof Person) // false console.log(ben instanceof Monkey) // false console.log(ben instanceof Ben) // true If "Ben.prototype = Monkey.prototype;" console.log(ben instanceof Monkey) // true console.log(ben in... read more »