From what I have heard, the following is a "self-calling function":
func(){}();
How is it different from the following?
func(){} func();
|
From what I have heard, the following is a "self-calling function":
How is it different from the following?
|
||||
|
|
|
I assume you meant what is the difference between (I):
and (II):
or even (III):
All three behave the same in regard to the results, however they have different naming and scoping consequences:
Note that in II and III the function is referencable via |
|||||
|