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?
