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 works?

var obj = new Object();
obj.prototype.test = function() { alert('Hello?'); };
var obj2 = new obj();
obj2.test();

I remember a lot talk I had with people a while back, I'm not actually sure what the hell I'm doing. As I understand it, there's no concept of a class, it's just an object, and instances of those objects are clones of the original, right?

But what is the exact purpose of this ".prototype" property in JavaScript? How does it relate to instantiating objects?

Update: correct way

var obj = new Object(); // not a functional object
obj.prototype.test = function() { alert('Hello?'); }; // this is wrong!

function MyObject() {} // a first class functional object
MyObject.prototype.test = function() { alert('OK'); } // OK

Also these slides really helped a lot.

link|improve this question

feedback

7 Answers

up vote 38 down vote accepted

Every JavaScript object has an internal property called [[Prototype]]. If you look up a property via obj.propName or obj['propName'] and the object does not have such a property - which can be checked via obj.hasOwnProperty('propName') - the runtime looks up the property in the object referenced by [[Prototype]] instead. If the prototype-object also doesn't have such a property, its prototype is checked in turn, thus walking the original object's prototype-chain until a match is found or its end is reached.

Some JavaScript implementations allow direct access to the [[Prototype]] property, eg via a non-standard property named __proto__. In general, it's only possible to set an object's prototype during object creation: If you create a new object via new Func(), the object's [[Prototype]] property will be set to the object referenced by Func.prototype.

This allows to simulate classes in JavaScript, although JavaScript's inheritance system is - as we have seen - prototypical, and not class-based:

Just think of constructor functions as classes and the properties of the prototype (ie of the object referenced by the constructor function's prototype property) as shared members, ie members which are the same for each instance. In class-based systems, methods are implemented the same way for each instance, so methods are normally added to the prototype, whereas an object's fields are instance-specific and therefore added to the object itself during construction.

link|improve this answer
So, I'm I doing something wrong by defining new properties on the prototype property in my short snippet? – John Leidegren Feb 21 '09 at 14:11
@John: yes, it's wrong - only function objects have a predefined prototype property, so your code will throw an error, eg 'obj.prototype is undefined' in FF – Christoph Feb 21 '09 at 14:44
I think this is what it means to have function objects as first-class citizens. – John Leidegren Feb 22 '09 at 7:16
I hate non standard things, especially in programming languages, why is there even a proto when it's clearly not needed? – John Leidegren Feb 22 '09 at 7:23
1  
+1 for prototypical – sova Nov 8 '10 at 23:55
show 3 more comments
feedback

In a language implementing classical inheritance like Java, C# or C++ you start creating a class, a blueprint for your objects and then you can create new objects from that class or you can extend the class defining a new class that augments the original class.

However the big difference in JavaScript is that everything works at runtime, not at compile time, in fact there is no compile time at all.

In JavaScript you first create an object, there is no concept of class, then you can augment your own object or create new objects from it. It's not difficult, but a little foreign and hard to metabolize for somebody used to the classical way.

Example:

//Define a functional object to hold persons in javascript
var Person = function (name) {
    this.name = name;
};

//Add dynamically to the already defined object a new getter
Person.prototype.getName = function () {
    return this.name;
};

//Create a new object of type Person
var john = new Person("John");

//Try the getter
alert(john.getName());

//If now I modify person, also John gets the updates
Person.prototype.sayMyName = function () {
    alert('Hello, my name is ' + this.getName());
};

//Call the new method on john
john.sayMyName();

Until now I've been extending the base object, now I create another object and then inheriting from Person.

//Create a new object of type Customer by defining its constructor. It's not 
//related to Person for now.
var Customer = function (name) {
    this.name = name;
};

//Now I link the objects and to do so, we link the prototype of Customer to 
//a new instance of Person. The protype is the base that will be used to 
//construct all new instances and also, will modify dinamically all already 
//constructed objects because in Javascript objects retain a pointer to the 
//prototype
Customer.prototype = new Person();

//Now I can call the methods of Person on the Customer, let's try, first 
//I need to create a Customer.
var myCustomer = new Customer('Dream Inc.');
myCustomer.sayMyName();

//If I add new methods to Person, they will be added to Customer, but if I
//add new methods to Customer they won't be added to Person. Example:
Customer.prototype.setAmountDue = function (amountDue) {
    this.amountDue = amountDue;
};
Customer.prototype.getAmountDue = function () {
    return this.amountDue;
};

//Let's try:
myCustomer.setAmountDue(2000);
alert(myCustomer.getAmountDue());

While as said I can't call setAmountDue(), getAmountDue() on a Person.

//The following statement generates an error.
john.setAmountDue(1000);
link|improve this answer
While I appricate the in-depth answer, this question already has several good answers and one accepted answer, so I'm somewhat surprised to see this kind of thing popping up now. I have a question though for you. Customer.prototype = new Person(); Is the new operator really required here? or would you intentionally sometimes leave that out? I'm thinking that it would still work without the new operator but changes to the customer prototype will now affect the Person functional object. – John Leidegren Jan 24 '11 at 9:37
14  
I think the answers on stackoverflow are not only interesting to the original poster, but also to a big community of other people lurking or coming from searches. And I've been one of them and I had benefit from old posts. I think I could contribute to the other answers adding some code examples. About your question: if you leave out the new, it doesn't work. when I call myCustomer.sayMyName() it returns "myCustomer.sayMyName is not a function". The easiest way is experiment with firebug and see what happens. – stivlo Jan 24 '11 at 9:52
1  
But why? The value is still an object? isn't the point here that objects and functions should be indistinguishable? besides the fact that you cannot invoke on an object. – John Leidegren Jan 24 '11 at 23:29
As far as I understand var Person = function (name) {...}; is defining a constructor function capable of building Person Objects. So there is no Object yet, only the anonymous constructor function is assigned to Person. This is a very good explanation: helephant.com/2008/08/how-javascript-objects-work – stivlo Jan 25 '11 at 3:30
This is a really great answer! – Max Felker Dec 23 '11 at 20:15
show 1 more comment
feedback

John Resig has a few slides on function prototypes that were helpful to me when looking into the subject (you can also make changes to the code and see what happens...)

http://ejohn.org/apps/learn/#64

link|improve this answer
Great reference material, for purposes of keeping this question informative perhaps place some of the comments from John's site on your answer in case his site is changes in a way that your link is no longer available. Either way +1, helped me. – Chris May 27 '11 at 23:14
feedback

what is the exact purpose of this ".prototype" property?

The interface to standard classes become extensible. For example, you are using the Array class and you also need to add a custom serializer for all your array objects. Would you spend time coding up a subclass, or use composition or ... The prototype property solves this by letting the users control the exact set of members/methods available to a class.

Think of prototypes as an extra vtable-pointer. When some members are missing from the original class, the prototype is looked up at runtime.

link|improve this answer
feedback

prototype allows you to make classes. if you do not use prototype then it becomes a static.

Here is a short example.

var obj = new Object();
obj.test = function() { alert('Hello?'); };

In the above case, you have static funcation call test. This function can be accessed only by obj.test where you can imagine obj to be a class.

where as in the below code

function obj()
{
}

obj.prototype.test = function() { alert('Hello?'); };
var obj2 = new obj();
obj2.test();

The obj has become a class which can now be instantiated. Multiple instances of obj can exist and they all have the test function.

The above is my understanding. I am making it a community wiki, so people can correct me if I am wrong.

link|improve this answer
2  
-1: prototype is a property of constructor functions, not instances, ie your code is wrong! Perhaps you meant the non-standard property __proto__ of objects, but that's a whole different beast... – Christoph Feb 21 '09 at 13:25
@Christoph - Thanks for pointing it out. I have updated the sample code. – Ramesh Feb 21 '09 at 13:52
This a sort of good answer, but there's more to it. – John Leidegren Feb 21 '09 at 14:22
1  
There's so much more to it... Plus JavaScript is not a class-based language - it deals with inheritance via prototypes, you need to cover the differences in more detail! – 999 Feb 21 '09 at 15:00
feedback

Javascript doesn't have inheritance in the usual sense, but it has the prototype chain.

prototype chain

If a member of an object can't be found in the object it looks for it in the prototype chain. The chain consists of other objects. The prototype of a given instance can be accessed with the __proto__ variable. Every object has one, as there is no difference between classes and instances in javascript.

The advantage of adding a function / variable to the prototype is that it has to be in the memory only once, not for every instance.

It's also useful for inheritance, because the prototype chain can consist of many other objects.

link|improve this answer
1  
FF and Chrome supports proto, but not IE nor Opera. – some Feb 21 '09 at 12:44
feedback

When a constructor creates an object, that object implicitly references the constructor’s “prototype” property for the purpose of resolving property references. The constructor’s “prototype” property can be referenced by the program expression constructor.prototype, and properties added to an object’s prototype are shared, through inheritance, by all objects sharing the prototype.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.