Thursday, October 24, 2019
closures - What is the purpose of a self executing function in javascript?
Answer
Answer
In javascript, when would you want to use this:
(function(){
//Bunch of code...
})();
over this:
//Bunch of code...
Answer
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.
For example:
(function(){
var foo = 3;
alert(foo);
})();
alert(foo);
This will first alert "3" and then throw an error on the next alert because foo is not defined.
Subscribe to:
Post Comments (Atom)
hard drive - Leaving bad sectors in unformatted partition?
Laptop was acting really weird, and copy and seek times were really slow, so I decided to scan the hard drive surface. I have a couple hundr...
-
This question is prompted by the following regularly observed phenomena I'd like to find an explanation for: Current commit is regularly...
-
I'm currently trying to set up my environment such that I can open a ConEmu tab and it will automatically initialize Far Manager and the...
-
Before taking ownership of files and folders I would like to understand how to view the current permissions so that they may be reverted. I ...
No comments:
Post a Comment