JavaScript scope and closure - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T12:33:07Zhttp://stackoverflow.com/feeds/question/631187http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/631187/javascript-scope-and-closure2JavaScript scope and closurecdillon2009-03-10T16:44:46Z2009-03-10T17:27:07Z
<p>I'm trying to wrap my head around closures (there's a joke in there somewhere) and I ran across this:</p>
<pre><code>(function () { /* do cool stuff */ })();
</code></pre>
<p>How does this work? What's the purpose of putting the function in parens? Why the empty parens afterwards?</p>
http://stackoverflow.com/questions/631187/javascript-scope-and-closure/631207#6312070Answer by Chetan Sastry for JavaScript scope and closureChetan Sastry2009-03-10T16:49:51Z2009-03-10T16:49:51Z<p>That construct means declare an anonymous function and run it immediately. The reason you put your code inside a function body is because the variables you define inside it remain local to the function and not as global variables. However, they will still be visible to the closures defined inside this function.</p>
http://stackoverflow.com/questions/631187/javascript-scope-and-closure/631208#6312080Answer by John Saunders for JavaScript scope and closureJohn Saunders2009-03-10T16:49:52Z2009-03-10T16:49:52Z<p>The parens around the function make it clear that the function is an expression. The parens after are the call to the function.</p>
<p>Notice that the function does not have a name.</p>
http://stackoverflow.com/questions/631187/javascript-scope-and-closure/631212#631212-2Answer by Damien McGivern for JavaScript scope and closureDamien McGivern2009-03-10T16:50:20Z2009-03-10T16:50:20Z<p>the function may be returning an other function.</p>
http://stackoverflow.com/questions/631187/javascript-scope-and-closure/631213#6312133Answer by Matthew Marshall for JavaScript scope and closureMatthew Marshall2009-03-10T16:50:27Z2009-03-10T16:50:27Z<p>That creates a function, calls it, and discards it.</p>
<p>It might be clearer if you look at it like this:</p>
<pre><code>var throwaway = function(){
// do cool stuff
};
throwaway();
</code></pre>
<p>This is done to create a private namespace. Code in the function can have functions and variables without worrying about conflicting with other code loaded in the page.</p>
http://stackoverflow.com/questions/631187/javascript-scope-and-closure/631216#6312160Answer by Peter Bailey for JavaScript scope and closurePeter Bailey2009-03-10T16:50:39Z2009-03-10T17:27:07Z<p>Putting the function declaration inside parens creates an expression which evaluates to the anonymous function within. Therefore, the first parenthetical evaluates to a function.</p>
<p>The "empty parens" at the end invoke the defined function, so "//do cool stuff" executes immediately.</p>
<p>This is a way to execute code on-the-fly while also keeping variables out of the global scope.</p>
<p>What is illustrated here, however, has nothing to do with closures - at least not directly. Closures are about maintaining a lexical scope after a parent function has already exited.</p>
http://stackoverflow.com/questions/631187/javascript-scope-and-closure/631261#63126110Answer by Jesse Rusak for JavaScript scope and closureJesse Rusak2009-03-10T16:56:30Z2009-03-10T17:19:22Z<p>The point of this is that any variables declared in the cool stuff will not be created in global namespace. Any function in javascript will create such a scope. Suppose you have some javascript you want to run. If you do this:</p>
<pre><code>var b = 1;
// stuff using b
</code></pre>
<p>And some other code uses b, it will get your left over value. (Or, even worse, if some other code sets b before your code runs, then tries to get its old value later, you'd have changed it in the meantime.) </p>
<p>On the other hand, if you have this code, which declares and then calls the a function:</p>
<pre><code>function a() {
var b = 1;
}
a();
</code></pre>
<p>And some other code later on uses b, it will not see your values, since b is local to the function. The problem with this, of course, is that you're still making a global name - "a", in this case. So, we want a function with no name - this is why you get the code you described. It declares a function with no name, and then calls it.</p>
<p>Unfortunately, you can't just say:</p>
<pre><code>function() { ... }()
</code></pre>
<p>because this will be parsed as a function declaration <em>statement</em>, and then a syntax error. By wrapping the function declaration in parenthesis, you get a function <em>expression</em>, which can then be called. You call it like any other function expression (like a, above), using the second set of parens. For example, if the function took arguments, you'd pass them there:</p>
<pre><code>(function(a) { ... })(1)
</code></pre>