I\'m trying to wrap my head around closures (there\'s a joke in there somewhere) and I ran across this:
(function () { /* do cool stuff */ })();
The parens around the function make it clear that the function is an expression. The parens after are the call to the function.
Notice that the function does not have a name.