appeler une fonction d'auto-exécutation javascript

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

foo();  // hello
Enthusiastic Eland