Tagged Questions
The prototype-oriented tag has no wiki summary.
35
votes
7answers
8k 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 ...
3
votes
2answers
77 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: ...
3
votes
2answers
295 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 ...
2
votes
4answers
56 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 ...
2
votes
5answers
175 views
How to declare a static variable in Javascript
In the following code, I would like to have the counter keeps track of the number of Person objects created, But it is not doing so. How do i acomplish that.
function Person(){
this.name = ...
2
votes
5answers
86 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";}
};
...
2
votes
2answers
139 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 ...
1
vote
1answer
34 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
66 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 ...