The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
3answers
72 views

Proper Prototypal Inheritance

So I really looked all over the internet and found many different ways on setting prototypal inheritance in javascript. Some of them use call(). Some of them use this sytnax: var rabbit.prototype = ...
-1
votes
1answer
55 views

Can you suggest a good book for Prototypal Inheritance? [closed]

I've gone through Javascript: The Good Parts and currently reading Javascript Patterns, but would like to do some in-depth reading on Protoypal Inheritance. It doesn't have to be a JS book but if it ...
3
votes
2answers
108 views

Most performant way to write custom .on()/.bind() JavaScript

I write lots of little libraries and modules and usually these libraries and modules have have some events associated with them. Until now I've been writing these like (shortened down a lot): ...
1
vote
3answers
906 views

How to delete an object in Javascript crossbrowser

var obj = { destroy: function(){this = null;} }; obj.destroy(); This works in Chrome, however firefox is throwing an error referencing this for some reason. Is there a better way to kill this ...
25
votes
8answers
1k views

(Open Source) Examples of JavaScript Prototypical OO

Bounty Edit: I'm looking for code written in a pure prototypical OO paradigm (think Self). Not a mixture of prototypical OO and classical OO. I don't want to see generic OO wrappers but simply usage ...