The prototype-programming tag has no wiki summary.
42
votes
4answers
8k views
prototype based vs. class based inheritance
In javascript, every object is at the same time instance and class. To do inheritance, you can use any object instance as a prototype.
In python, C++, etc.. there are classes, and instances, as ...
36
votes
6answers
4k views
What does it mean that Javascript is a prototype based language?
One of the major advantages with Javascript is said to be that it is a prototype based language.
But what does it mean that Javascript is prototype based, and why is that an advantage?
29
votes
1answer
7k views
JavaScript: Class.method vs. Class.prototype.method
What is the difference between the following two declarations?
Class.method = function () { /* code */ }
Class.prototype.method = function () { /* code using this.values */ }
Is it okay to think of ...
25
votes
4answers
7k views
Javascript: prototypal inheritance
I am new to JavaScript OOP. Can you please explain me what the difference is between the following blocks of code. I tested and both blocks work. What's the best practice and why?
First block:
...
24
votes
1answer
8k views
How does __proto__ differ from constructor.prototype?
function Gadget(name, color)
{
this.name = name;
this.color = color;
}
Gadget.prototype.rating = 3
var newtoy = new Gadget("webcam", "black")
...
17
votes
3answers
3k views
Benefits of prototypal inheritance over classical?
So I finally stopped dragging my feet all these years and decided to learn JavaScript "properly". One of the most head-scratching elements of the languages design is it's implementation of ...
15
votes
5answers
451 views
The disadvantages of JavaScript prototype inheritance, what are they?
I recently watched Douglas Crockford's JavaScript presentations, where he raves about JavaScript prototype inheritance as if it is the best thing since sliced white bread. Considering Crockford's ...
14
votes
2answers
271 views
Reason behind using 'instanceof function() {}'?
On Mozilla Developer Center, there is a page about the Function.prototype.bind function and provides a compatibility function for browsers which do not support this function.
However, when analyzing ...
14
votes
5answers
14k views
Adding hours to Javascript Date object?
It amazes me that Javascript's Date object does not implement an add function of any kind.
I simply want a function that can do this:
var now = Date.now();
var fourHoursLater = now.addHours(4);
...
13
votes
4answers
552 views
Extending ggplot2 properly?
Recently a few neat uses of ggplot2 have come up, and either partial or full solutions have been posted:
ggheat
Curly braces
position_dynamic
ggheat is notable because it rather breaks the ggplot ...
12
votes
2answers
141 views
What is the difference between an object and a prototype in prototypal programming?
I'm trying to understand the "JavaScript way" of creating and using objects and I think I'm running into a misunderstanding of an object and a prototype.
In a new project I've started I've decided to ...
12
votes
4answers
2k views
JavaScript instance functions versus prototype functions
My understanding of the different kinds of JavaScript functions are as follows:
function MyObj() {
this.propOne = true;
this.publicInstanceFunc = function() {
if (propOne)
...
11
votes
2answers
315 views
Are prototypes bad in JavaScript?
In Felix's Node.js Style Guide it says:
Do not extend the prototypes of any
objects, especially native ones. There
is a special place in hell waiting for
you if you don't obey this rule.
...
10
votes
4answers
405 views
Changing Window.prototype.open in a way that isn't detectable/reversible
I am looking into ways to extend Firefox pop-up blocking from an extension. One option is replacing window.open() (or rather Window.prototype.open()) in the webpage by a wrapper function. An important ...
9
votes
2answers
204 views
Why use chained prototype inheritance in javascript?
perf
Why do we build a prototype inheritance chain rather then using object composition. Looking up through the prototype for each step in the chain get's expensive.
Here is some dummy example code ...
7
votes
2answers
191 views
Strange “getter” behaviour in IE9 when accessing property of `Number.prototype` from a number literal
Object.defineProperty(Number.prototype, 'foo', {
get: function () { return this }
})
console.log(10.5.foo)
console.log(10..foo) // 0 in IE9!
console.log(10.0.foo) // 0 in IE9!
...
7
votes
7answers
710 views
how does Array.prototype.slice.call() work?
I know it is used to make arguments a real array, but I don't understand what happens when using prototype.slice.call(arguments)
7
votes
1answer
160 views
Is it ok to assign the javascript prototype object instead of just its properties?
In JavaScript we can assign properties to a function's prototype or set its prototype object directly:
var MyClass = function() { };
// The "property" form...
MyClass.prototype.foo = function() { ...
7
votes
3answers
125 views
Javascript prototype and issues accessing class
Family = function(name) {
this._Name = name;
}
Family.prototype = {
getName: function() {
return this._Name;
},
People: function(num) {
this._Number = num;
}
}
...
7
votes
3answers
507 views
Pros and cons of inheritance modeling in Javascript?
I realize that Javascript does not have classes and is not built to have classical OOP inheritance. But I find such patterns so useful that I wanted to build a simple way to model that kind of ...
7
votes
3answers
680 views
Is the Prototype Design Pattern Really Just Clone?
I am doing an in depth study on design patterns, and I came across prototype, which I didn't really study before. I have searched the web and several books, and there isn't a really good example of ...
6
votes
3answers
257 views
Confused by javascript's constructor and prototype?
function MyObject(){}
Array.prototype={};
MyObject.prototype={};
var a=new Array();
var b=new MyObject();
alert(a.constructor==Array);//true
alert(b.constructor==MyObject);//false
6
votes
2answers
122 views
Correct way to build classes in JavaScript?
I am new to JavaScript, and trying to understand how i should write classes (my background in 'regular' OO languages, such as java and c++).
I understand that i have two options:
If i want my class ...
6
votes
6answers
2k views
Preserving a reference to “this” in JavaScript prototype functions
I'm just getting into using prototypal JavaScript and I'm having trouble figuring out how to preserve a this reference to the main object from inside a prototype function when the scope changes. Let ...
5
votes
1answer
139 views
How does object.create work in JavaScript?
Tell me if I'm wrong:
A prototype is a normal object. When an object inherits a prototype, it does not just copy the properties of the prototype, the object stores a reference to the prototype.
In ...
5
votes
3answers
155 views
JavaScript inheritance: when constructor has arguments
Using pure JavaScript to do inheritance, this is what I usually do:
function A() {}
A.prototype.run = function () {};
function B() {}
B.prototype = new A;
B.prototype.constructor = B;
Since there ...
5
votes
2answers
69 views
Old object as a prototype
I'm reading this book and there is a chapter about prototypes with this hard to understand paragraph and code snippet.
When you make a new object, you can select the object that should be
its ...
5
votes
5answers
162 views
Prototype in this Array slice call, why?
I was reading the MDN page for the JS Function's arguments variable:
https://developer.mozilla.org/en/JavaScript/Reference/Functions_and_function_scope/arguments
I understand that arguments is not ...
5
votes
3answers
136 views
OOP Javascript - Isolate object within class
I'm attempting to have a main object that I can create multiple instances of, that each inherit the children (with unique/isolated properties). When I do this, however, the properties of the object ...
4
votes
2answers
76 views
Why “String.prototype={}” won't work?
I wrote this code in javascript:
String.prototype = {
a : function() {
alert('a');
}
};
var s = "s";
s.a();
I expect it alert an a, but it reports:
s.a is not a function
Why?
4
votes
2answers
71 views
is Object.getPrototypeOf() same as Object.constructor.prototype in Javascript?
I am learning about prototypical inheritance in JavaScript and am confused by the difference (if any) between Object.getPrototypeOf(obj) and obj.constructor.prototype. Is there one? Or are these two ...
4
votes
1answer
51 views
how many copies of the inner function will be created
These days most of my work is related to js developing.
However I suddenly found that I am confused with some questions.
Check this code(I add one method to a custom class):
...
4
votes
3answers
90 views
Javascript literal vs function oop
whats the best practice to use these?
var x = { a: 'a', eat: function() { }, ... }
vs
var x = function() { var a = 'a'; this.eat = function() { }}
the above needs to be initiated:
new x();
...
4
votes
2answers
200 views
Adding methods to custom objects in Javascript [closed]
Possible Duplicate:
Use of 'prototype' vs. 'this' in Javascript?
I went to various websites but not able to understand the difference between the following ways of adding ...
4
votes
3answers
1k views
Javascript inheritance: call super-constructor or use prototype chain?
Quite recently I read about JavaScript call usage in MDC
https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Function/call
one linke of the example shown below, I still don't ...
4
votes
3answers
366 views
Adding a prototype to an object literal
I have some object, say son, which I'd like to inherit from another object father.
Of course I can make a constructor function for father, like
Father = function() {
this.firstProperty = ...
3
votes
3answers
128 views
How to declare function pointer in header and c-file?
I'm a little confused over how to declare a function pointer in a header file.
I want to use it in main and a file called menus.c and declare it in menus.h I assume.
We want to initialize to point to ...
3
votes
4answers
120 views
JS - Why use Prototype? [closed]
Possible Duplicate:
Javascript: prototype inheritance
OK, So I am somewhat new to the idea of OOP in JS.
What is the different between these 2 snippets of code:
function animal(){
...
3
votes
2answers
54 views
What are pitfalls of extending Object.prototype?
I want to extend Object.prototype, to basically support notifications in JSON data and html elements through UI framework.
Object.prototype.setValue = function(key,value){
// this simply sets ...
3
votes
3answers
56 views
Javascript prototype property not working as expected with array and object fields
I get an unexpected result with the following code:
var TestModel, u, u2;
function TestModel() {}
TestModel.prototype.a = null;
TestModel.prototype.b = [];
u = new TestModel();
u.a = 1;
...
3
votes
3answers
84 views
Is there a good use case for the constructor property in Javascript?
First off, this question is not "what does the constructor property do?" - There's plenty of good documentation on exactly what it is and how it works: It's a reference to the function that created ...
3
votes
1answer
69 views
Unexpected behaviour in Firefox when getter returns a function
Object.defineProperty(Number.prototype, 'foo', {
get: function () {
var me = this
return function () { return me.valueOf() }
}
})
console.log(5..foo())
This logs 5 in Chrome, but 0 in ...
3
votes
2answers
69 views
why does listing the actual constructor of a class in javascript important
I was reading on javascript garden http://bonsaiden.github.com/JavaScript-Garden/ about prototype in javascript and one of its example goes like this:
function Foo() {
this.value = 42;
}
...
3
votes
3answers
140 views
How to change Prototype class declarations into jquery?
I'm working with my Rails 3.1 migration and it's getting harder and harder to keep jquery and prototype living peacefully side by side. I'm investigating a way to change my Prototype-way implemented ...
3
votes
2answers
55 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
4answers
64 views
Getting a 'this' reference to a 2nd level prototype function
I'm fairly certain this isn't possible, but wanted to see if anyone had some ingenious ideas as to how to make it possible.
I want the following code to work:
var x = new foo();
x.a.getThis() === x; ...
3
votes
1answer
92 views
Application based on Prototypical inheritance in real life projects
Class-based inheritance shows its usefulness in creating big programming systems, especially GUI systems.
How can be applied Prototypical-based inheritance in real life applications? How we should ...
3
votes
1answer
319 views
Access private (local) variable inside a closure scope
I'm making a google chrome extension and trying to get reference of a local variable within a closure scope.
// The script model of the target website
// I can't change any code of these
function ...
2
votes
2answers
47 views
Prototypal inheritance in JS and how to get parent properties
I'm trying to have properties inherit from a parent, but I'm not clear as to the right way of doing it.
Lets say I have:
var Animal = function(name){
this.offspring = [];
this.name = name;
...
2
votes
4answers
68 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 ...