Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
24  
+1 for your link to John Resig's JavaScript Ninja slide #64. Starting from there was really helpful, and I feel like I understand prototypes correctly. – a paid nerd Jun 24 '12 at 21:02
Do we really need a functional object for applying prototype? if yes than why ? – pandit Feb 19 at 15:40
This might help you: webdeveasy.com/javascript-prototype – Naor Apr 10 at 11:35

11 Answers

up vote 182 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.

share|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
2  
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
3  
+1 for prototypical – sova Nov 8 '10 at 23:55
show 6 more comments

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.

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);
share|improve this answer
106  
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
2  
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
1  
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
3  
This is a really great answer! – Max Felker Dec 23 '11 at 20:15
5  
@stivlo This is a great answer as well! Thanks for contributing. I learned a lot both from the accepted answer and yours! :) – Jan Carlo Viray Feb 7 '12 at 11:17
show 8 more comments

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

share|improve this answer
2  
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

After reading this thread, I feel confused with JavaScript Prototype Chain, then I found these charts

http://iwiki.readthedocs.org/en/latest/javascript/js_core.html#inheritance

it's a clear chart to show JavaScript Inheritance by Prototype Chain

and

http://www.javascriptbank.com/javascript/article/JavaScript_Classical_Inheritance/

this one contains a example with code and several nice diagrams.

prototype chain ultimately falls back to Object.prototype.

prototype chain can be technically extended as long as you want, each time by setting the prototype of the subclass equal to an object of the parent class.

Hope it's also helpful for you to understand JavaScript Prototype Chain.

share|improve this answer
It would be great if you could provide a short abstract of the contents of the links so this answer is still usefull when the links are dead. – Nicktar Nov 7 '12 at 10:08
@Nicktar, Thanks for your suggestion, I have added simple description by these links. – rockXrock Nov 8 '12 at 3:10

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.

share|improve this answer
4  
-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
2  
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! – James Feb 21 '09 at 15:00
I think this answer is a little misguiding. – Armin Cifuentes Apr 23 at 20:33

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.

share|improve this answer

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.

share|improve this answer
1  
FF and Chrome supports proto, but not IE nor Opera. – some Feb 21 '09 at 12:44
Georg, please clarify for a noob - "there is no difference between classes and instances in javascript." - could you elaborate? How does this work? – Hamish Grubijan Nov 7 '12 at 23:03

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.

share|improve this answer

I finally understood prototypes by reading this article:

http://javascriptweblog.wordpress.com/2010/06/07/understanding-javascript-prototypes/

share|improve this answer

I found some very useful related content on Mozilla developer: Working with objects. and Inheritence & Prototype Chain.

share|improve this answer

If you want a brief answer,a prototype is an object from which other objects inherit properties

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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