Rufen Sie eine selbst ausführende Funktion JavaScript auf
var foo = (function bar() {
alert('hello');
return bar;
})(); // hello
foo(); // hello
Enthusiastic Eland