While looking at code on github, I found the following:

(function() {

}).call(this);

This is clearly a self invoking anonymous function. But why is it written this way? I'm used to seeing the canonical variant (function() {})().

Is there any particular advantage to using .call(this) for a self invoking anonymous function?


Edit: It looks like some commonjs environments set this to a non-global value at the top level of a module. Which ones, and what do they set this to that you might want to preserve?

link|improve this question

1  
@Rob I don't think that's remotely what Sean is asking about in this question. – Matt Ball Jun 9 '11 at 2:46
1  
Ah, found it - definitely not a duplicate question, but the answer is similar: stackoverflow.com/questions/5211638/… – Matt Ball Jun 9 '11 at 3:09
Ooh, Good link @Matt. I can see there that it makes a lot of sense if the functions are nested. – Sean McMillan Jun 9 '11 at 3:27
stackoverflow.com/questions/4542942/… A comment on this answer says that some commonjs environments set this to a non-global at the top level of a module. That would explain why you might need to preserve this. – Sean McMillan Jun 9 '11 at 4:58
show 1 more comment
feedback

4 Answers

up vote 0 down vote accepted

.call(this) (was actually just () until I changed it) ensures your top level this to be consistent through strict mode, --bare option and/or the running environment (where top level this doesn't point to global object).

link|improve this answer
None of that makes any sense. – RobG Jun 9 '11 at 12:10
1  
Ah -- () and .call(this) are different in strict mode. Now it all makes sense. .call(this) provides the same context to the function is strict and lax modes. – Sean McMillan Jun 9 '11 at 12:31
feedback

By default, invoking a function like (function(){/*...*/})() will set the value of this in the function to window (in a browser) irrespective of whatever the value of this may be in the enclosing context where the function was created.

Using call allows you to manually set the value of this to whatever you want. In this case, it is setting it to whatever the value of this is in the enclosing context.

Take this example:

var obj = {
    foo:'bar'
};

(function() {
    alert( this.foo ); // "bar"
}).call( obj );

http://jsfiddle.net/LWFAp/

You can see that we were able to manually set the value of this to the object referenced by the obj variable.

link|improve this answer
feedback

The form is called a closure and is used to "close over" the data it contains. See Closure for a full explanation.

link|improve this answer
1  
Might want to re-read the question. :) – takteek Jun 9 '11 at 2:46
Yeah duh, thanks. – Rob Raisch Jun 9 '11 at 2:47
I'll agree that my answer wasn't complete, but the form is a closure and in the example given, provides a means to operate on the currently scoped 'this' isolated from its original scope. – Rob Raisch Jun 9 '11 at 2:54
feedback

By using:

> (function() {
>   ...
> }).call(this);`

then this in the scope of the code (probaby the global object) is set as the function's this object. As far as I can tell, it's equivalent to:

(function(global) {
  // global references the object passed in as *this*
  // probably the global object
})(this);

In a browser, usually window is (or behaves as if it is) an alias for the global object.

link|improve this answer
The first is definitely not equivalent to the second. – Matt Ball Jun 9 '11 at 3:10
It provides a reference to the outer execution context's this and stores it as a local variable named global rather than this. So it is equivalent, it just assigns the reference to a different property of the local activation/variable object. – RobG Jun 9 '11 at 5:45
In that sense, sure. – Matt Ball Jun 9 '11 at 5:52
feedback

Your Answer

 
or
required, but never shown

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