In javascript, when would you want to use this:
(function(){
//Bunch of code...
})();
over this:
//Bunch of code...
|
In javascript, when would you want to use this:
over this:
|
|||
|
|
|
Its all about variable scoping. Variables declared in the self executing function are, by default, only available to code within the self executing function. This allows code to be written without concern of how variables are named in other blocks of javascript code. |
|||||||||||
|
|
Namespacing. JavaScript's scopes are function-level. |
|||||||
|
I am a great fan :) of it because:
Enormously – (Why you should say its good?)
More here. |
|||||
|
|
I can't believe none of the answers mention implied globals. The Basically the function block makes sure all the dependent "global vars" you defined are confined to your program, it does not protect you against defining implicit globals. JSHint or the like it what you actually want to defend against that. The more concise As far as |
|||||
|
|
Scope isolation, maybe. So that the variables inside the function declaration don't pollute the outer namespace. Of course, on half the JS implementations out there, they will anyway. |
|||||||||
|
|
Is there a parameter and the "Bunch of code" returns a function?
Closure. The value of |
|||||||||||
|
|
One difference is that the variables that you declare in the function are local, so they goes away when you exit the function and the don't conflict with other variables in other code. |
|||
|
|
|
Since functions in Javascript are first-class object, by defining it that way, it effectively defines a "class" much like C++ or C#. That function can define local variables, and have functions within it. The internal functions (effectively instance methods) will have access to the local variables (effectively instance variables), but they will be isolated from the rest of the script. |
|||
|
|