função auto -invocada javascript
(function(){
//Bunch of code...
})();
Strange Stork
(function(){
//Bunch of code...
})();
(() => {
console.log('Ok');
})()
(function(){
// all your code here
alert("XXXXXX");
})();
/*this field executes immediates when it created*/