Possible Duplicates:
What is the difference between a function expression vs declaration in Javascript?
Explain JavaScript's encapsulated anonymous function syntax
Why this:
(function () {
//code
}());
and this:
var f = function () {
//code
}();
works, while this:
function () {
//code
}();
does not? It looks exactly the same - anonymous function defined, and immediately called. Can someone make a quotation from Javascript/ECMAScript standard which explains that?
Probably a stupid question, but I can't sleep. :)
UPDATE: thanks for the answers everyone! So its about function expression vs. function declaration. see this SO answer, ECMAScript standard section 13, and this great article: http://kangax.github.com/nfe/.
To recap answers:
First snippet is interpreted as expression because of grouping operator
()applied - see ECMAScript standard section 11.1.6.In second snippet function is interpreted as expression because its on the right-hand part of assignment operator
=.Third snippet doesn't have anything which allows interpreter to read function as expression, so its considered a declaration, which is invalid without identifier (Gecko lets it pass however, but it chokes on following
()grouping operator (as it thinks) applied to nothing).