Call immediately executing function from outside
I've got an immediately executing function and I need to call it from 开发者_运维问答outside:
(function myFunc(){
console.log("Hello from myFunc");
})();
I'm using named function because I'm doing a recursion in it so I can reference it. but at some point recursion stops. and I need to invoke this function once again.
Is there a reason you have to wrap it like that? Why don't you just make a normal named function and call it:
function myFunc(){
console.log("Hello from myFunc");
}
myfunc();
精彩评论