JavaScript scope and closure - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T12:33:07Z http://stackoverflow.com/feeds/question/631187 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/631187/javascript-scope-and-closure 2 JavaScript scope and closure cdillon 2009-03-10T16:44:46Z 2009-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#631207 0 Answer by Chetan Sastry for JavaScript scope and closure Chetan Sastry 2009-03-10T16:49:51Z 2009-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#631208 0 Answer by John Saunders for JavaScript scope and closure John Saunders 2009-03-10T16:49:52Z 2009-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 -2 Answer by Damien McGivern for JavaScript scope and closure Damien McGivern 2009-03-10T16:50:20Z 2009-03-10T16:50:20Z <p>the function may be returning an other function.</p> http://stackoverflow.com/questions/631187/javascript-scope-and-closure/631213#631213 3 Answer by Matthew Marshall for JavaScript scope and closure Matthew Marshall 2009-03-10T16:50:27Z 2009-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#631216 0 Answer by Peter Bailey for JavaScript scope and closure Peter Bailey 2009-03-10T16:50:39Z 2009-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#631261 10 Answer by Jesse Rusak for JavaScript scope and closure Jesse Rusak 2009-03-10T16:56:30Z 2009-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>