var foo = (function bar() {
alert('hello');
return bar;
})(); // hello
foo(); // hello
(function () {
console.log('test');
})();
//or simple
(() => {
console.log('test');
})();
var foo = (function bar() {
alert('hello');
return bar;
})(); // hello
foo(); // hello
(function () {
console.log('test');
})();
//or simple
(() => {
console.log('test');
})();