Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

23
votes
9answers
750 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 ...
3
votes
2answers
63 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): ...
3
votes
2answers
52 views

Javascript and prototypal Inheritance

Is there a difference between these two statements in Javascript? function p() { this.do = function(){alert('cool')}; } and this one?: function p(){}; p.prototype.do = ...
3
votes
2answers
64 views

How do you remove a method from a javascript type

I have a bit of javascript that runs on a 3rd party's website which requires me to temporarily add a function to the Array type, e.g. Array.prototype.foo = function() { alert("foo's for everyone!"); ...
1
vote
3answers
112 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 ...
1
vote
1answer
80 views

Can we call this real prototypal inheritance?

I'm always flabbergasted by the way people try to force some form of classical inheritance into javascript. I have designed a method to inherit in some object b the prototype methods from object a, ...
0
votes
2answers
52 views

Prototypal Inheritance Multiple Instances of Objects

I'm trying to get the grips of using prototypal inheritance. Here is the code I have below. It is based on the book "Object -Oriented Javascript" by Stoyan Stefanov, with just a few modifications. ...