Possible Duplicate:
Location of parenthesis for auto-executing anonymous JavaScript functions?

Sometimes I see:

(function() { ... }()); 

and sometimes I see:

(function() { ... })(); 

I see both forms with and without arguments. They both execute the anonymous function.

Is there a difference between the two forms? Are there any compelling reasons to use one form over the other?

link|improve this question

@Tim - Thanks for pointing that thread out. I didn't find it with search. – Peter Ajtai Sep 23 '10 at 22:57
Let's just keep voting up a duplicate... – Josh Stodola Sep 24 '10 at 18:57
2  
Josh: CMS's answer is better than any on the duplicate, so some good has come of it. – Tim Down Sep 24 '10 at 23:12
@Tim - Josh won't get notified of your comment unless you begin with @Josh ==> [ How do comment replies work? ](meta.stackoverflow.com/questions/43019/…) – Peter Ajtai Sep 24 '10 at 23:17
1  
oh! I hadn't realised. Embarrassing. – Tim Down Sep 25 '10 at 16:30
feedback

closed as exact duplicate by Tim Down, CrazyJugglerDrummer, Yi Jiang, Josh Stodola, Graviton Sep 25 '10 at 2:11

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

4 Answers

up vote 14 down vote accepted

There is no practical difference in those two forms, but from a grammatical point of view the difference between the two is that The Grouping Operator - the parentheses - will hold in the first example a CallExpression, that includes the FunctionExpression:

               CallExpression
                |         |
       FunctionExpression |
                |         |
                V         V
    (function() {       }());
    ^                      ^
    |--PrimaryExpression --|

In the second example, we have first a whole CallExpression, that holds the FunctionExpression:

          PrimaryExpression
                |
         FunctionExpression
                |
                V
    (function() {       })();
    ^                      ^
    |--  CallExpression  --|

link|improve this answer
feedback

There is no difference between the two, so far as the compiler is concerned. However, will find that the (function () {}()) style is recommended in Douglas Crockford’s JavaScript code conventions.

link|improve this answer
Correction: (function () {}()); – Moses Sep 23 '10 at 23:07
As Moses wrote, it looks like it's the other way around. From that text: When a function is to be invoked immediately, the entire invocation expression should be wrapped in parens so that it is clear that the value being produced is the result of the function and not the function itself.... (function() { ... }()); – Peter Ajtai Sep 23 '10 at 23:13
3  
To be even clearer, Crockford doesn't (explicitly) recommend either form in that link. The only thing related that Crockford recommends is wrapping self-executing functions in parens. – Moses Sep 23 '10 at 23:14
"[...] and again, I'm wrapping the whole function and the invocation in parens. as a sign to the reader that there is something bigger going on than just an assignment of a function. There are some people who will put the golden paren. around the function and not around the whole invocation -- that doesn't make sense to me because what we are trying to tell the user is: 'Look at the whole thing', and putting parentheses around just part of it, I think, is counter-productive, so I think the whole thing needs to be wrapped in parens." -- Douglas Crockford. – XP1 Jul 29 '11 at 5:15
... "Crockford on JavaScript -- Act III: Function the Ultimate" (2010-02-17). At 56:09 minutes. – XP1 Jul 29 '11 at 5:16
feedback

As far as differences go, it is really just syntactic sugar. Somewhat equivalent to: "do you like jQuery() or $()?" Both can be compiled, executed, and used interchangeably (AFAIK).

From the code samples I have seen thus far, more people seem to follow the Crockford code convention:

(function() { ... }()); 

Personally, I prefer the (function(){})(); convention because it is more apparent to me that the function is self-executing; I'm also a big user of jQuery and that's the convention used in jQuery source.

Additionally, it is considered good practice to use parens to enclose your self-executing function, regardless of which form you choose to go with.

link|improve this answer
Is there a source for the "predominant convention"? – Casey Chu Sep 23 '10 at 23:30
@Casey - Crockford mentions it in his [ code conventions ](javascript.crockford.com/code.html) - Mozilla and Drupal conventions don't seem to mention it either way. – Peter Ajtai Sep 23 '10 at 23:49
feedback

I currently found that they are in different in syntax:

function{}(); (without parens) doesn't work, because when JS is in Statement and saw function keyword, it's expecting a function declaration, which does not allow () at the end.

 Statement ::= FuncDecl ;
 FuncDecl ::= function Ident_optional ( ArgList ) { Block }

and function{ }() makes the parse chokes when it's expecting Statement's ;

The first form seems easier to type than the second one.

link|improve this answer
1  
Neither form includes function{}(); ---- It's either (function(){}()); or (function(){})(); – Peter Ajtai Sep 23 '10 at 22:56
feedback

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