function F() {
return function() {
return {};
}
}
var f = new F();
f instanceof F; // returns false
As far as I understand, if I want instanceof
to work, I need to return this
from the constructor. But I want the constructor to return a function, and I cannot assign to this
.
So, is this really impossible or can it be done somehow, for f = new F()
to return a function and still f instanceof F
to return true?
In you your example F is not a constructor it is a function that returns an anonymous constructor which you then call new upon. instanceof works by looking at the prototype chain, so your code doesn't work because you haven't setup up the prototypes correctly.
This page has a good explain of JavaScript Constructors and how to subsclass.
Take a look at the following code and see if it helps.
Only works in the browsers with
__proto__
You could of course make all functions appear to be
instanceof F
by settingF.prototype = Function.prototype;
.Unfortunately it looks as if ECMAScript doesn't allow you to create a function subclass.
You can however do it in Gecko using the deprecated
__proto__
property:To anyone coming across this today, with ES6/2015 there's new syntax you can use to avoid the deprecated
__proto__
property;Object.setPrototypeOf
. Note that MDN warns that this is a slow/expensive operation.Note also that it gets a little weird if you want to initialize values in the constructor. You need to set them as props on the function you will return, but later additions to the prototype will reference them as 'this'. e.g.