vote up 15 vote down star
11

What's the difference?

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

or

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

6 Answers

vote up 1 vote down

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

link|flag
vote up 2 vote down

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.

link|flag
vote up 0 vote down

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) { _instance_var = v; },

    x: function() {  alert(_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.

link|flag
vote up 16 vote down

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 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 this 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

link|flag
vote up 4 vote down

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:

var A = function () {
    this.x = function () {
    alert('A');
    };
};

var B = function () { };
B.prototype.x = function () {
    alert('B');
};

var a = new A();
var b = new B();
a.x(); // displays A
b.x(); // displays B
A.x = function() {alert('C');};
a.x(); // displays A, but new instances of A will display C when x is called
B.prototype.x = function () {alert('D');};
b.x(); // displays D, because by changing prototype.x 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.

link|flag
vote up 0 vote down

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

link|flag

Your Answer

Get an OpenID
or

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