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 learning JavaScript, and I can't understand why you'd make methods that aren't 'privileged,' that is, that aren't defined in the constructor but rather the class' prototype.

I understand the idea of encapsulation and all, but you never encapsulate parts of a class from the rest of it in most of the OO world.

share|improve this question

1 Answer

up vote 16 down vote accepted

When a function is defined in a constructor, a new instance of that function is created each time the constructor is called. It also has access to private variables.

var myClass = function() {
    // private variable
    var mySecret = Math.random();

    // public member
    this.name = "Fred";

    // privileged function (created each time)
    this.sayHello = function() {
        return 'Hello my name is ' + this.name;
        // function also has access to mySecret variable
    };
}

When a function is defined on the prototype, the function is created only once and the single instance of that function is shared.

var myClass = function() {
    // private variable
    var mySecret = Math.random();

    // public member
    this.name = "Fred";
}

// public function (created once)
myClass.prototype.sayHello = function() {
    return 'Hello my name is ' + this.name;
    // function has NO access to mySecret variable
};

So defining a function on the prototype produces less objects which can give you better performance. On the other hand, public methods do not have access to private variables. Further examples and reasoning are available here: http://www.crockford.com/javascript/private.html

share|improve this answer
I see. Thanks so much. – Aaron Yodaiken Jun 18 '10 at 1:42
@aharon: Just in case: be cautious for the use of this. – Marcel Korpel Jun 18 '10 at 1:48
I updated my answer to make the difference between public, private, and privileged more clear. – Greg Jun 18 '10 at 1:56

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.