5
votes
2answers
82 views
(javacript) what are prototypes?
What is a prototype for a javascript class? In other words, what is the different between
Example.prototype.method {}
and
Example.method{}
when defining the Example class?
edit: for those …
8
votes
3answers
407 views
prototypes versus classes
Steve Yegge recently posted an interesting blog post on what he calls the universal design pattern. In there he details using prototypes as a modelling tool, instead of classes. I like the way this …
1
vote
6answers
132 views
Is it an anti-pattern to modify JavaScript’s built-in prototypes?
I understand from this post, that it's an anti-pattern to modify Object's prototype in JavaScript. I was curious, however, if it's widely considered to be an antipattern to modify other 'built-in' …
1
vote
2answers
51 views
Javascript: setting up a chain of prototypes
In Javascript, every object has a prototype. Any prototype is an object, therefore any prototype has a prototype.
This is me:
var Person = function (name) {
this.name = name;
}
Person.prototype = …
5
votes
3answers
345 views
JavaScript: Setting methods through prototype object or in constructor, difference?
Could you explain the difference between setting methods in the constructor and through prototype object? The following code shows these two ways of setting the methods - say_hello and say_bye both …
16
votes
3answers
1k views
Why are Perl function prototypes bad?
In another question a member asserted "I would advice you not to use prototypes. They have their uses, but not for most cases and definitely not in this one."
Can anyone elaborate on why this might …
