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.

Given this bit of code:

var SuperClass = function(a, b) {
  this.a = a;
  this.b = b;
};

SuperClass.prototype.getA = function() {
  return this.a;
};

var SubClass = function(a, b, c) {
  SuperClass.call(this, a, b);
  this.c = c;
};

In order to initiate the SubClass prototype, most recommendations seem to be the following:

SubClass.prototype = new SuperClass();

It seems odd to me to create (instantiate) a new SuperClass object (with its own a and b properties) just to serve as the prototype for the SubClass.

This also works:

// anti-pattern
SubClass.prototype = SuperClass.prototype;

but it passes the SuperClass.prototype object by reference, so anything you add to the SubClass.prototype is also added to the SuperClass.prototype, because they are the same object. This is not expected behavior in most cases.

QUESTION: Is there a way to achieve the proper prototyping without creating an instance of the SuperClass to serve as the SubClass's base prototype?

share|improve this question

1 Answer

up vote 5 down vote accepted

Under modern browsers:

SubClass.prototype = Object.create( SuperClass.prototype );

This lets you create an object with a defined __proto__ without invoking the 'constructor' method of the parent class. For more details, read up on Object.create (including a polyfill implementation for older browsers).

Seen in action:

function Foo(){ console.log("AHHH!"); }
Foo.prototype.foo = 42;
function Bar(){}
Bar.prototype = Object.create(Foo.prototype);  // Note: no "AHHH!" shown
Bar.prototype.bar = 17;

// Showing that multi-level inheritance works
var b = new Bar;
console.log(b.foo,b.bar); //-> 42, 17

// Showing that the child does not corrupt the parent
var f = new Foo;          //-> "AHHH!"
console.log(f.foo,f.bar); //-> 42, undefined

// Showing that the inheritance is "live"
Foo.prototype.jim = "jam";
console.log(b.jim);       //-> "jam"
share|improve this answer
Thanks. That was exactly what I was looking for. – Noah Freitas May 23 '12 at 23:46

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.