The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
99 views

What's the difference between these codes?

function Demo() { this.show1 = function() { alert(1) } } Demo.prototype.show2 = function() { alert(2) } var d = new Demo d.show1() d.show2() show1 and show2 can both alert number. Is there any ...
2
votes
2answers
87 views

Prototyping-orientated features in Python?

I have written a PHP application and have a problem that I cannot solve in a good way in PHP. So I am thinking over porting it to Ruby or Python--two languages I never used before. As far as I've seen ...
1
vote
1answer
63 views

Javascript behaviour reuse: What side effects will this approach have?

I'm trying to understand pure prototype-based JavaScript and one specific thing I'm struggling with is reuse (inheritance). For my project I landed this way of creating objects that can be reused. ...
2
votes
4answers
308 views

How do you do inheritance in JavaScript without sharing the same instance of the super class between all instances of the sub class?

I noticed that every tutorial on how to do JavaScript inheritance does this: SubClass.prototype = new SuperClass(); But this will create a single instance of the super class and share it among all ...
3
votes
2answers
303 views

How do I copy an object and it's prototype chain without calling its constructor function?

How do I copy an object and it's prototype chain without calling its constructor function? In other words, what would the function dup look like in the following example? class Animal @sleep: ...
1
vote
1answer
76 views

How can I added functions to Object constructor using Object.prototype?

I've been coming along with those scripts these days and after bunches of research I still could not find the answer. So here is the problem, I want to (for example) add a function into an Object ...
1
vote
1answer
81 views

getting only last class assigned with this.class

Please can anyone see what is wrong in this code, I have 2 class images with .man and .girl which contains 10 images in each. next I have 2 div's #manCount and #girlCount which display total images ...
4
votes
5answers
5k views

How to declare a static variable in Javascript

In the following code, I would like to have a counter to keep track of the number of Person objects created. This code is not doing so, how would I accomplish that? function Person(){ this.name = ...
2
votes
5answers
144 views

I am doing something wrong with this prototype in JavaScript, any ideas?

The following code doesn't produce a prototype like I thought it might. Can anyone see what I am doing wrong? var A = function () { return { workingTest: function () {return "OK";} }; ...
3
votes
2answers
545 views

Prototype chain can't get Object()?

I read an article which explains what prototype chain is. It says that if I try to access an object's property but it doesn't have it, javascript engine will try it's .constructor.propotype. If it ...
4
votes
2answers
461 views

Is it worth to use prototype or should we use OOP for javascript?

I am a developer for sometime now, and for the past few years I am using prototype framework and it's implementation for OOP, to be used in Javascript. I've used jquery and some other frameworks as ...
309
votes
11answers
94k views

How does JavaScript .prototype work?

I'm not that in to dynamic programming languages but I've written my fair share of JavaScript code. I never really got my head around this prototype-based programming, does any one know how this ...