show/hide this revision's text 2 added 18 characters in body

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 */ })();

How does this work? What's the purpose of putting the function in parens? Why the empty parens afterwards?

show/hide this revision's text 1

JavaScript scope and closure

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 })();

How does this work? What's the purpose of putting the function in parens? Why the empty parens afterwards?