vote up 3 vote down star
1
function a () {
    return "foo";
}

a.b = function () {
    return "bar";
}

function c () { };
c.prototype = a;

var d = new c();
d.b(); // returns "bar"
d(); // throws exception, d is not a function

Is there some way for d to be a function, and yet still inherit properties from a?

flag

67% accept rate

3 Answers

vote up 4 vote down check

Short answer: not possible.

This line of your code:

var d = new c();

automatically assumes that d is an object. Unless c is a constructor of a builtin object, e.g., Function. But if c is already defined by the language, you cannot manipulate its prototype, and cannot "inherit" it from whatever you like. Well, in some interpreters you can, but you cannot do it safely across all interpreters — the standard says: "you doth not mess with standard objects or the interpreter will smite you!".

The builtin objects are "unique" and JavaScript does not provide ways to duplicate them. It is not possible to recreate String, Number, Function, and so on without resorting to incompatible trickery.

link|flag
vote up 1 vote down

Does it have to actually be a prototype chain? You can use a mixin pattern to make a function have all of the properties of a instead. You can even wrap it in a nice "new" syntax to fake it if you really want.

function a () {

return "foo";

}

a.b = function () {

return "bar";

}

function c () {

var f = function(){
    return a();
};

//mixin all properties on a
for(var prop in a){
    f[prop] = a[prop];
}

return f; //just returns the function instead of "this"

};

var d = new c(); //doesn't need the new keyword, but just for fun it still works

alert(d()); //show "foo"

alert(d.b()); //shows "bar"

You can add properties to d without affecting a. The only difference between this and what you want is that changes to a will not affect existing "instances" of c.

link|flag
Yes, I've resorted to using a mixin. In my case, there is a small chance that a will be modified, and changes ought be reflected in d, but it isn't likely to be a big deal in practise. – Daniel Cassidy Dec 4 '08 at 16:01
vote up 0 vote down

Actually, it turns out that this is possible, albeit in a non-standard way.

Mozilla, Rhino, Safari and ActionScript provide a non-standard __proto__ property, which allow changing the prototype of an object after it has been created. On these platforms, the following code is possible:

function a () {
    return "foo";
}

a.b = function () {
    return "bar";
}

function c () {
    return "hatstand";
}
c.__proto__ = a;

c(); // returns "hatstand"
c.b(); // returns "bar"; inherited from a

This might be of use to anyone who doesn't need to worry about cross-platform compatibility.

However, note that only the properties of an object can be inherited. For example:

var d = {};
d.__proto__ = a;
d.b(); // returns "bar"
d(); // throws exception -- the fact that d is inheriting from a function
     // doesn't make d itself a function.
link|flag

Your Answer

Get an OpenID
or

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