How do you explain this structure in JavaScript? - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T10:29:53Zhttp://stackoverflow.com/feeds/question/186024http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/186024/how-do-you-explain-this-structure-in-javascript9How do you explain this structure in JavaScript?iprog2008-10-09T05:35:49Z2008-10-18T14:02:13Z
<pre><code>(function()
{
//codehere
}
)();
</code></pre>
<p>What is special about this kind of syntax?
What does ()(); imply?</p>
http://stackoverflow.com/questions/186024/how-do-you-explain-this-structure-in-javascript/186030#18603036Answer by Geoff for How do you explain this structure in JavaScript?Geoff2008-10-09T05:39:12Z2008-10-09T05:39:12Z<p>The creates an anonymous function, closure and all, and the final () tells it to execute itself.</p>
<p>It is basically the same as:</p>
<pre><code>function name (){...}
name();
</code></pre>
<p>So basically there is nothing special about this code, it just a 'shortcut' to creating a method and invoking it without having to name it. </p>
<p>This also implies that the function is a one off, or an internal function on an object, and is most useful when you need to the features of a closure.</p>
http://stackoverflow.com/questions/186024/how-do-you-explain-this-structure-in-javascript/186033#1860332Answer by Ash for How do you explain this structure in JavaScript?Ash2008-10-09T05:39:53Z2008-10-09T05:39:53Z<p>That is a self executing anonymous function. The () at the end is actually calling the function.</p>
<p>A good book (I have read) that explains some usages of these types of syntax in Javascript is <a href="http://rads.stackoverflow.com/amzn/click/1847194141" rel="nofollow">Object Oriented Javascript</a>.</p>
http://stackoverflow.com/questions/186024/how-do-you-explain-this-structure-in-javascript/186041#1860410Answer by Sugendran for How do you explain this structure in JavaScript?Sugendran2008-10-09T05:44:19Z2008-10-09T05:44:19Z<p>The stuff in the first set of brackets evaluates to a function. The second set of brackets then execute this function. So if you have something that want to run automagically onload, this how you'd cause it to load and execute.</p>
http://stackoverflow.com/questions/186024/how-do-you-explain-this-structure-in-javascript/186186#1861862Answer by artificialidiot for How do you explain this structure in JavaScript?artificialidiot2008-10-09T06:44:55Z2008-10-13T10:44:08Z<p>This usage is basically equivalent of a inner block in C. It prevents the variables defined <em>inside</em> the block to be visible outside. So it is a handy way of constructing a one off classes <em>with</em> private objects. Just don't forget <code>return this;</code> if you use it to build an object.</p>
<pre><code>var Myobject=(function(){
var privatevalue=0;
function privatefunction()
{
}
this.publicvalue=1;
this.publicfunction=function()
{
privatevalue=1; //no worries about the execution context
}
return this;})(); //I tend to forget returning the instance
//if I don't write like this
</code></pre>
http://stackoverflow.com/questions/186024/how-do-you-explain-this-structure-in-javascript/187042#1870424Answer by Leo for How do you explain this structure in JavaScript?Leo2008-10-09T12:32:11Z2008-10-09T12:40:30Z<p>It's an anonymous function being called.</p>
<p>The purpose of that is to create a new scope from which local variables don't bleed out. For example:</p>
<pre><code>var test = 1;
(function() {
var test = 2;
})();
test == 1 // true
</code></pre>
<p>One important note about this syntax is that you should get into the habit of terminating statements with a semi-colon, if you don't already. This is because Javascript allows line feeds between a function name and its parentheses when you call it.</p>
<p>The snippet below will cause an error:</p>
<pre><code>var aVariable = 1
var myVariable = aVariable
(function() {/*...*/})()
</code></pre>
<p>Here's what it's actually doing:</p>
<pre><code>var aVariable = 1;
var myVariable = aVariable(function() {/*...*/})
myVariable();
</code></pre>
<p>Another way of creating a new block scope is to use the following syntax:</p>
<pre><code>new function() {/*...*/}
</code></pre>
<p>The difference is that the former technique does not affect where the keyword "this" points to, whereas the second does.</p>
<p>Javascript 1.8 also has a let statement that accomplishes the same thing, but needless to say, it's not supported by most browsers.</p>
http://stackoverflow.com/questions/186024/how-do-you-explain-this-structure-in-javascript/187315#1873150Answer by J-P for How do you explain this structure in JavaScript?J-P2008-10-09T13:47:17Z2008-10-09T14:08:36Z<p>John Resig explains self-executing anonymous functions here: <a href="http://tinyurl.com/4s6ut4" rel="nofollow">http://tinyurl.com/4s6ut4</a></p>
http://stackoverflow.com/questions/186024/how-do-you-explain-this-structure-in-javascript/215075#2150751Answer by Kent Brewster for How do you explain this structure in JavaScript?Kent Brewster2008-10-18T14:02:13Z2008-10-18T14:02:13Z<p>See also Douglas Crockford's excellent "JavaScript: The Good Parts," available from O'Reilly, here:</p>
<p><a href="http://oreilly.com/catalog/9780596517748/" rel="nofollow">http://oreilly.com/catalog/9780596517748/</a></p>
<p>... and on video at the YUIblog, here:</p>
<p><a href="http://yuiblog.com/blog/2007/06/08/video-crockford-goodstuff/" rel="nofollow">http://yuiblog.com/blog/2007/06/08/video-crockford-goodstuff/</a></p>