Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have class

function Foo(a) {
  this.a = a;
  this.bar = function () {
    console.log(this.a);
  };
  this.buz = function () {
    this.a();
    console.log('bzz');
  };
}

and I'll have quite many instances of this class. Should I move methods to prototype?

function Foo(a) {
  this.a = a;
}
Foo.prototype = {
  bar: function () {
    console.log(this.a);
  },
  buz: function () {
    this.a();
    console.log('bzz');
  }
}
share|improve this question
possible duplicate of Use of 'prototype' vs. 'this' in Javascript? – Felix Kling Jul 31 '12 at 18:53

3 Answers

up vote 6 down vote accepted

Yes. This will save on memory as each method will be shared instead of recreated each time you instantiate the class.

Methods inside the constructor are considered privileged methods as they can have access to private variables inside the constructor and should only be used if you need access to a private variable.

Crockford on privileged methods

share|improve this answer

Putting class methods is a good idea to save memory. There will be only one instance of the method in the prototype instead of many instances in each object.

share|improve this answer

The only reason to define methods inside of a constructor in JS is to create a "Privileged" method.

The idea is to create a method that is publicly available, but has access to the private instance variables.

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.