If you don't want to depend on any other libraries, you can do this:
function A() {}
A.prototype.foo = function() {};
function B() {
A.call(this);
//Or, if there are arguments that need to be passed to A(),
//this might be preferable:
//A.apply(this, arguments);
}
B.prototype = new A();
//Or, if the browser supports ECMAScript 5 and/or you have a shim for Object.create,
//it would be better to do this:
B.prototype = Object.create(A.prototype);
$.extend(B.prototype, A.prototype, {
//set the constructor property back to B, otherwise it would be set to A
constructor: B,
bar: function() {}
});
Make sure to define any properties in the constructor rather than on the prototype, e.g.:
function A() {
this.baz = null;
}
This avoids having unintentionally shared prototype properties.
There are some libraries that make prototypal inheritance easier:
Notes:
- Any time a prototype is replaced, including by extension, it's a best practice to
set its constructor property back to the correct constructor. That's why we set B.prototype.constructor to B.
If you were replacing A.prototype you should do it like this:
...
A.prototype = {
constructor: A,
foo: function() {}
//other methods...
}
B.prototype = Object.create(A.prototype) is preferred over B.prototype = new A() because it helps you detect it early if you forgot to call A() from B()'s constructor; it also allows A() to have required parameters. You'll need a shim for older browsers; the simplest shim (although it doesn't support the full Object.create spec) is at the bottom of this page: http://javascript.crockford.com/prototypal.html.