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

What's the difference?

var A = function () {
    this.x = function () {
        //do something
    };
};

or

var A = function () { };
A.prototype.x = function () {
    //do something
};
share|improve this question

7 Answers

This is a common misunderstanding. The two given examples are really doing entirely different things.

We can take a look at the differences, but let's make a few mental notes about javascript before diving into it:

  • The prototype of an object provides access to members of that object.
  • The keyword this refers to the object context within which the function is executing.
  • The language is functional, i.e. everything is an Object, including functions, and functions are values.

So here are the snippets in question:

var A = function () {
    this.x = function () {
        //do something
    };
};

In this case, variable A is assigned a function value. When that function is called, the runtime system will look for a variable "x" in the current object context. Without any additional code in the example, we could assume that this would be the global object. So to sum up: in this first snippet, this refers to the object invoking A().

var A = function () { };
A.prototype.x = function () {
    //do something
};

Something very different is happening in the second snippet. In the first line, variable A is assigned a function value. In javascript, functions are objects, and all objects have a prototype member. So in the second line, the object A is assigned a property x via the prototype. As you can see, this is completely different from the effect in the prior snippet.

For clarity, let's take a look at a third snippet. It's almost exactly like the first one (and may be what you meant to ask about):

var A = new function () {
    this.x = function () {
        //do something
    };
};

In this third example, I've simply added the new keyword. This changes the meaning of the function, turning it into what is commonly called a constructor function. When called with new, the function is run in a blank object context. In other words, because of the new keyword, this will refer to a blank object which will be newly created and applied to the function invocation. Property x will be assigned to the blank object, and the function will return the new object with property x, assigning it to variable A.

By making yet another small change, we have a fourth interesting case for comparison:

var A = function () {
    this.x = function () {
        //do something
    };
}();

In this fourth case, variable A is created and assigned the value of an executed inline function. The function is declared and immediately executed, so whatever value it returns is assigned to A. Here again, this will refer to the object context of the function call, and that object would have a property x assigned to it. The inline function doesn't explicitly return anything, so A will have a value of 'undefined'.

Related questions:

Sidenote: There is not a real memory savings between the snippets in question. The first variable x belongs to the function value, and the second variable x is a member on an object. If you did have an inheritance chain (though our examples do not), the second snippet would potentially make x available to its children. It's really comparing apples to oranges.

If, on the other hand, you had two "A"-style objects, both with property x, each object's x would be made available to objects in an inheritance hierarchy via the prototype, regardless of whether they were explicitly assigned to a prototype object. The prototype always provides the access in the javascript system.

Javascript isn't a low-level language. It may not be very valuable to think of prototyping as a way to explicitly change the way memory is allocated.

share|improve this answer
3  
Isn't it actually that every function has a prototype (not every object)? For instance, the following returns undefined: ({}).prototype. – Lachlan Cotter Sep 30 '11 at 15:16
2  
I understand your example, but it's actually every object. You just have an object literal there, and the prototype of that single instance is undefined. Evaluate Object.prototype instead. I assume you tried the same with a function instance. The function instance will give you a good prototype value because it inherits from Object. – keparo Oct 1 '11 at 5:25
5  
@keparo: You are wrong. Every object has a [internal] prototype object (which can be null), but this is very different from the prototype property - which is on functions and to which the prototype of all the instances is set when they are constructed with new. Can't believe this really got 87 upvotes :-( – Bergi Sep 18 '12 at 18:56
1  
"The language is functional" are you sure that this is what functional means? – phant0m Sep 26 '12 at 10:10
1  
I second what @Bergi said about prototypes. Functions have a prototype property. All objects, including functions, have another internal property which can be accessed with Object.getPrototypeOf(myObject) or with myObject.__proto__ in some browsers. The proto property indicates the object's parent in the prototype chain (or the object from which this object inherits). The prototype property (which is only on functions) indicated the object that will become the parent of any objects that utilize the function to create new objects using the new keyword. – Jim Cooper Mar 13 at 14:41
show 3 more comments

As others have said the first version, using "this" results in every instance of the class A having its own independent copy of function method "x". Whereas using "prototype" will mean that each instance of class A will use the same copy of method "x".

Here is some code to show this subtle difference:

// x is a method assigned to the object using "this"
var A = function () {
    this.x = function () {
        alert('A');
    };
};
A.prototype.updateX = function(value) {
    this.x = function() {
        alert(value);
    }
};

var a1 = new A();
var a2 = new A();
a1.x();  // Displays 'A'
a2.x();  // Also displays 'A'
a1.updateX('Z');
a1.x();  // Displays 'Z'
a2.x();  // Still displays 'A'

// Here x is a method assigned to the object using "prototype"
var B = function () { };
B.prototype.x = function () {
    alert('B');
};
B.prototype.updateX = function(value) {
    B.prototype.x = function() {
        alert(value);
    }
}

var b1 = new B();
var b2 = new B();
b1.x();  // Displays 'B'
b2.x();  // Also displays 'B'
b1.updateX('Y');
b1.x();  // Displays 'Y'
b2.x();  // Also displays 'Y' because by using prototype we
         // have changed it for all instances

As others have mentioned, there are various reasons to choose one method or the other. My sample is just meant to clearly demonstrate the difference.

share|improve this answer
2  
This is what I would expect to happen, but when I instantiated a new object after changing A.x like above, still I display 'A' unless I use A like a singleton. jsbin.com/omida4/2/edit – jellyfishtree Oct 19 '10 at 21:08
3  
That's because my example was wrong. It's only been wrong for two years. Sigh. But the point is still valid. I updated the example with one that actually works. Thanks for pointing it out. – Benry Oct 23 '10 at 8:04

In most cases they are essentially the same, but the second version saves memory because there is only one instance of the function instead of a separate function for each object.

A reason to use the first form is to access "private members". For example:

var A = function () {
    var private_var = ...;

    this.x = function () {
        return private_var;
    };

    this.setX = function (new_x) {
        private_var = new_x;
    };
};

Because of javascript's scoping rules, private_var is available to the function assigned to this.x, but not outside the object.

share|improve this answer

The ultimate problem with using this instead of prototype is that when overriding a method, the constructor of the base class will still refer to the overridden method. Consider this:

BaseClass = function() {
    var text = null;

    this.setText = function(value) {
        text = value + " BaseClass!";
    };

    this.getText = function() {
        return text;
    };

    this.setText("Hello"); // This always calls BaseClass.setText()
};

SubClass = function() {
    // setText is not overridden yet,
    // so the constructor calls the superclass' method
    BaseClass.call(this);

    // Keeping a reference to the superclass' method
    var super_setText = this.setText;
    // Overriding
    this.setText = function(value) {
        super_setText.call(this, "SubClass says: " + value);
    };
};
SubClass.prototype = new BaseClass();

var subClass = new SubClass();
console.log(subClass.getText()); // Hello BaseClass!

subClass.setText("Hello"); // setText is already overridden
console.log(subClass.getText()); // SubClass says: Hello BaseClass!

versus:

BaseClass = function() {
    this.setText("Hello"); // This calls the overridden method
};

BaseClass.prototype.setText = function(value) {
    this.text = value + " BaseClass!";
};

BaseClass.prototype.getText = function() {
    return this.text;
};

SubClass = function() {
    // setText is already overridden, so this works as expected
    BaseClass.call(this);
};
SubClass.prototype = new BaseClass();

SubClass.prototype.setText = function(value) {
    BaseClass.prototype.setText.call(this, "SubClass says: " + value);
};

var subClass = new SubClass();
console.log(subClass.getText()); // SubClass says: Hello BaseClass!

If you think this is not a problem, then it depends on whether you can live without private variables, and whether you are experienced enough to know a leak when you see one. Also, having to put the constructor logic after the method definitions is inconvenient.

var A = function (param1) {
    var privateVar = null; // Private variable

    // Calling this.setPrivateVar(param1) here would be an error

    this.setPrivateVar = function (value) {
        privateVar = value;
        console.log("setPrivateVar value set to: " + value);

        // param1 is still here, possible memory leak
        console.log("setPrivateVar has param1: " + param1);
    };

    // The constructor logic starts here possibly after
    // many lines of code that define methods

    this.setPrivateVar(param1); // This is valid
};

var a = new A(0);
// setPrivateVar value set to: 0
// setPrivateVar has param1: 0

a.setPrivateVar(1);
//setPrivateVar value set to: 1
//setPrivateVar has param1: 0

versus:

var A = function (param1) {
    this.setPublicVar(param1); // This is valid
};
A.prototype.setPublicVar = function (value) {
    this.publicVar = value; // No private variable
};

var a = new A(0);
a.setPublicVar(1);
console.log(a.publicVar); // 1
share|improve this answer

The first example changes the interface for that object only. The second example changes the interface for all object of that class.

share|improve this answer

Prototype is the template of the class; which applies to all future instances of it. Whereas this is the particular instance of the object.

share|improve this answer

I believe that @Matthew Crumley is right. They are functionally, if not structurally, equivalent. If you use Firebug to look at the objects that are created using new, you can see that they are the same. However, my preference would be the following. I'm guessing that it just seems more like what I'm used to in C#/Java. That is, define the class, define the fields, constructor, and methods.

var A = function() {};
A.prototype = {
    _instance_var: 0,

    initialize: function(v) { this._instance_var = v; },

    x: function() {  alert(this._instance_var); }
};

EDIT Didn't mean to imply that the scope of the variable was private, I was just trying to illustrate how I define my classes in javascript. Variable name has been changed to reflect this.

share|improve this answer
_instance_var as in the initialize and x methods do not refer to the _instance_var` property on an A instance, but to a global one. Use this._instance_var if you meant to use the _instance_var property of an A instance. – Lekensteyn Apr 8 '11 at 16:40
@Lek -- oops. fixed. – tvanfosson Apr 8 '11 at 17:46
1  
The funny thing is, Benry made such an error as well, which has been uncovered after two years as well :p – Lekensteyn Apr 8 '11 at 19:04
@Lek - no unit tests on SO. :-( – tvanfosson Apr 8 '11 at 20:12

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.