Вызовите функцию самостоятельного выполнения JavaScript

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

foo();  // hello
Enthusiastic Eland