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

Putting the function declaration inside parens creates an expression which returns evaluates to the anonymous function within. Therefore, the first parenthical parenthetical evaluates to a functionpointer.

The "empty parens" at the end call invoke the defined function, so "//do cool stuff" executes immediately.

This is a way to execute code on-the-fly while also keeping variables out of the global scope.

What is illustrated here, however, has nothing to do with closures - at least not directly. Closures are about maintaining a lexical scope after a parent function has already exited.

show/hide this revision's text 1

Putting the function declaration inside parens creates an expression which returns the anonymous function within. Therefore, the first parenthical evaluates to a function pointer.

The "empty parens" at the end call the defined function, so "//do cool stuff" executes immediately.

This is a way to execute code on-the-fly while also keeping variables out of the global scope.

What is illustrated here, however, has nothing to do with closures - at least not directly. Closures are about maintaining a lexical scope after a parent function has already exited.