JS função anônima de execução automática
/*An IIFE (Immediately Invoked Function Expression) is
a JavaScript function that runs as soon as it is defined.
The name IIFE is promoted by Ben Alman in his blog.*/
(function () {
statements
})();
Encouraging NeoBliz