vote up 4 vote down star
1

It's very common nowadays for Javascript libraries / functions / code snippets to be encapsulated with an anonymous function, e.g.

(function () {
    // code to be executed goes here
})();

As far as I can tell, that should be completely superfluous: that anonymous function just executes the code within. However, there's obviously a reason behind this! :-)

I've seen an occurrence of this with a comment alongside the first line: "// function wrapper for Opera".

Does anyone know why this code is commonly used, what the history of its development is, and what the relation with Opera is?

flag

55% accept rate
1  
That's the third time in 24 hours that somebody has asked this question, or one that is similar enough to cover the same ground... – NickFitz Oct 29 at 12:33
stackoverflow.com/questions/1639180/… stackoverflow.com/questions/1634268/… – NickFitz Oct 29 at 12:36
Sorry, Nick - I checked the related questions when asking this one, but the first you refer to didn't appear at all, and the second appeared 13th in the list. Whilst I always try to check the content of related questions, it's quite a barrier to have to read through 13 others before posting. I'm sure there's a meta discussion on this topic ... – Bobby Jack Oct 29 at 12:51
Where did the sudden interest come from? Was it in the NY Times or something? – Ewan Oct 29 at 12:56
See stackoverflow.com/questions/440739/… et al – bobince Oct 29 at 12:56
show 1 more comment

3 Answers

vote up 12 vote down check

This is a technique used to limit variable scope; it's the only way to prevent variables from polluting the global namespace.

var bar = 1; // bar is now part of the global namespace
alert(bar);

(function () {
   var foo = 1; // foo has function scope
   alert(foo); 
   // code to be executed goes here
})();
link|flag
2  
...and still have them be "global" with respect to your code. – tvanfosson Oct 29 at 12:24
So the reference to Opera in example code is irrelevant/wrong? – Bobby Jack Oct 29 at 12:30
1  
@Bobby: there might be additional variables/functions within that block that are used for Opera only. – geowa4 Oct 29 at 12:32
vote up 4 vote down

Another reason to do this is to remove any confusion over which framework's $ operator you are using. To force jQuery, for instance, you can do:

;(function($){
   ... your jQuery code here...
})(jQuery);

By passing in the $ operator as a parameter and invoking it on jQuery, the $ operator within the function is locked to jQuery even if you have other frameworks loaded.

link|flag
That's a more specific variation on the original question, but it's still good info! :) – Bobby Jack Oct 29 at 12:29
Not a answer at all, but I've upped it for the magnificent idea you had! – Spidey Oct 29 at 18:37
vote up 0 vote down

Another use for this construct is to "capture" the values of local variables that will be used in a closure. For example:

for (var i = 0; i < 3; i++) {
    $("#button"+i).click(function() {
        alert(i);
    });
}

The above code will make all three buttons pop up "3". On the other hand:

for (var i = 0; i < 3; i++) {
    (function(i) {
        $("#button"+i).click(function() {
            alert(i);
        });
    })(i);
}

This will make the three buttons pop up "0", "1", and "2" as expected.

The reason for this is that a closure keeps a reference to its enclosing stack frame, which holds the current values of its variables. If those variables change before the closure executes, then the closure will see only the latest values, not the values as they were at the time the closure was created. By wrapping the closure creation inside another function as in the second example above, the current value of the variable i is saved in the stack frame of the anonymous function.

link|flag
A small nitpick, but it isn't the stack frame that is closed over, it is the surrounding lexical scopes. Good implementations of closures will only capture the symbols that are actually mentioned inside the closure, some implementations simply capture everything (Ruby does this, so be careful what you have near closures). One way to think about an object in OOP is as a closure where the captured symbols are explicitly defined (the object's member attributes). – KayEss Oct 30 at 3:33
That's true, but that's really just an implementation issue and conceptually one can consider that the stack frame is what's referenced by the closure. OOP-style "objects" in Lisp family languages are all done with closures, it's a powerful technique. – Greg Hewgill Oct 30 at 3:39
Yes, although if you want to think in terms of stack frames then the closure is a chain of stack frames, one frame for each enclosing function in the lexical scope together with the global scope. The lexical scope is easier to think about (especially when explaining to somebody who is new to closures) because you don't get into a pointless (and misleading) discussion about which stack frame when you have multiple levels of nested functions. The lexical scope is simply what you see in the source code. – KayEss Oct 30 at 23:15

Your Answer

Get an OpenID
or

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