(function (){
    console.log("This runs immediately!!");
})();

Syntax:

(function (){ 
// Function Logic Here. 
})();

(function(){ })()