vote up 8 vote down star
5

Summary

Can you explain the reasoning behind the syntax for encapsulated anonymous functions in JavaScript? Why does this work: (function(){})(); but this doesn't: function(){}();?


What I know

In JavaScript, one creates a named function like this:

function twoPlusTwo(){
    alert(2 + 2);
}
twoPlusTwo();

You can also create an anonymous function and assign it to a variable:

var twoPlusTwo = function(){
    alert(2 + 2);
};
twoPlusTwo();

You can encapsulate a block of code by creating an anonymous function, then wrapping it in brackets and executing it immediately:

(function(){
    alert(2 + 2);
})();

This is useful when creating modularised scripts, to avoid cluttering up the current scope, or global scope, with potentially conflicting variables - as in the case of Greasemonkey scripts, jQuery plugins, etc.

Now, I understand why this works. The brackets enclose the contents and expose only the outcome (I'm sure there's a better way to describe that), such as with (2 + 2) === 4.


What I don't understand

But I don't understand why this does not work equally as well:

function(){
    alert(2 + 2);
}();

Can you explain that to me?

flag

2 Answers

vote up 11 vote down check

It doesn't work because it is a function declaration using the function statement, when you surround it with parentheses it is evaluated as a function expression.

This is a function defined with the function statement:

function foo(){
    alert(2 + 2);
}

This is a function expression:

(function () {
    alert(2 + 2);
}());

Parentheses can surround only expressions, not statements.


Functions can be declared in different ways, compare the following:

1- A function defined with the Function constructor assigned to the variable multiply:

  var multiply = new Function("x", "y", "return x * y;");

2- A function declaration of a function named multiply:

  function multiply(x, y) {
     return x * y;
  }

3- A function expression of an anonymous function assigned to the variable multiply:

  var multiply = function (x, y) {
     return x * y;
  }

4- A function expression of a function named *func_name* assigned to the variable multiply:

  var multiply = function func_name(x, y) {
     return x * y;
  }
link|flag
I think the term is function declaration rather than function statement. – Tim Down Oct 27 at 23:42
@Tim: Agree, you make a function declaration using the function statement. – CMS Oct 27 at 23:50
This is a great answer. It does seem to be linked intimately with how the source text is parsed- and the structure of the BNF. in your example 3, should I say that it is a function expression because it follows an equals sign, wheras that form is a function declaration/statement when it appears on a line by itself? I wonder what the purpose of that would be- is it just interpreted as a named function declaration, but without a name? What purpose does that serve if you're not assigning it to a variable, naming it, or calling it? – Breton Oct 27 at 23:50
Aha. Very useful. Thanks, CMS. This part of the Mozilla docs that you linked to is especially enlightening: developer.mozilla.org/En/… – Premasagar Oct 27 at 23:57
1  
@NickFitz: Both: (function(){})(); and (function(){}()); are valid... – CMS Oct 28 at 15:10
show 1 more comment
vote up 3 vote down

CMS's answer is correct. For an excellent in-depth explanation of function declarations and expressions, see this article by kangax.

link|flag
Great stuff. Thanks for the link, Tim. – Premasagar Oct 27 at 23:56

Your Answer

Get an OpenID
or

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