vote up 6 vote down star
5

Given a function:

function x(arg) { return 30; }

You can call it two ways:

result = x(4);
result = new x(4);

The first returns 30, the second returns an object.

Two questions:

1) How can you detect which way the function was called inside the function itself?

2) What happens to the 30 returned if "new x(4)" is used - it just disappears?

flag

67% accept rate

4 Answers

vote up 9 vote down check

The benefit of the code below is that you don't need to specify the name of the function twice and it works for anonymous functions too.

function x() {
    if ( (this instanceof arguments.callee) ) {
      alert("called as constructor");
    } else {
      alert("called as function");
    }
}
link|flag
vote up 1 vote down

In my testing for http://packagesinjavascript.wordpress.com/ I found the test if (this == window) to be working cross-browser in all cases, so that's the one I ended up using.

-Stijn

link|flag
vote up 4 vote down

Two ways, essentially the same under the hood. You can test what the scope of this is or you can test what this.constructor is.

If you called a method as a constructor this will be a new instance of the class, if you call the method as a method this will be the methods' context object. Similarly the constructor of an object will be the method itself if called as new, and the system Object constructor otherwise. That's clear as mud, but this should help:

var a = {};

a.foo = function () 
{
  if(this==a) //'a' because the context of foo is the parent 'a'
  {
    //method call
  }
  else
  {
    //constructor call
  }
}

var bar = function () 
{
  if(this==window) //and 'window' is the default context here
  {
    //method call
  }
  else
  {
    //constructor call
  }
}

a.baz = function ()
{
  if(this.constructor==a.baz); //or whatever chain you need to reference this method
  {
    //constructor call
  }
  else
  {
    //method call
  }
}
link|flag
typeof (this) will always be 'object' in your examples – Greg Dec 15 '08 at 9:21
bah, getting ahead of myself should just be testing 'this' directly - edited – annakata Dec 15 '08 at 9:42
1  
note that this.constructor for a non-new call is DOMWindow in Chrome, and undefined in IE , so you can't rely on it. – Claudiu Dec 15 '08 at 9:44
but in either of those cases the salient fact is that this.constructor is still not a.baz which is what matters – annakata Dec 15 '08 at 10:29
yep, definitely - just wanted to point out that "and the system Object constructor otherwise" is not necessarily correct – Claudiu Dec 15 '08 at 12:17
vote up 14 vote down

1) You can check this.constructor:

function x(y)
{
    if (this.constructor == x)
        alert('called with new');
    else
         alert('called as function');
}

2) Yes, the return value is just discarded when used in the new context

link|flag
ah, nice. is this.constructor undefined in the 'else'? – Claudiu Dec 15 '08 at 9:06
No it's default object constructor because the context of 'this' in that case is the function x itself, as you can see in my redundant answer below which I wouldn't have posted if SO had indicated this was already answered sigh – annakata Dec 15 '08 at 9:14
@annakata: no worries, your answer is still valuabe. upvote from me in any case. – Claudiu Dec 15 '08 at 9:31
3  
NOTE: The return value is not discarded; if the return value is an Object, then that object is returned instead of the 'this'. – Claudiu Dec 22 '08 at 19:38
1  
this also doesn't work if something like "x.prototype = new Array()", and the x.prototype.constructor field isn't re-assigned. – Claudiu Feb 9 at 1:34

Your Answer

Get an OpenID
or

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