;(function() {
A half-column is completed by an empty statement followed by a regular IIFE . This has no effect, but may be useful as a signage.
!function() {
Exclamation provokes a statement that should be seen as an expression. See Also: What an exclamation mark does before a function . This is a 1-byte shorter IIFE expression method.
+function() {
Very similar to the version of the exclamation mark, both of them cause the following expression to be evaluated as an expression. The difference is how the result of the expression is processed. + makes it convert to a numerical value,! leads to negation of value. In both cases, the result is then discarded - they are virtually the same.
source share