Chame uma função de auto -execução JavaScript

var foo = (function bar() {
   alert('hello');
   return bar;
})();   // hello

foo();  // hello
Enthusiastic Eland