JavaScript has bunch of cool features; one of them can be self executing functions. 🙂
Also this self invocation feature could be surrounded by the best practices for JavaScript.
Let’s have an example of an anonymous self invoking function:
(function(){
var test = 2;
alert(test);
})();
Here, test variable has its own local scope, means it doesn’t interface with or pollute global scope and it dies out(remains as long as there’s somewhere in the page or in an event that references the variable you declared in your closure: Thanks Dan Beam for this correction 🙂 ) when the function terminates.
One simple example:
var testVar = "Hi there";
(function testFunction(str)
{
alert(str);
})( testVar );
One more scoping example(by Dan Beam):
var class = (function () {
var private = function () { alert("Hey, I'm still here!"); };
return ({ test: function () { private(); }});
})();
// more JavaScript
class.test();
Self-invocation (also known as auto-invocation) is when a function executes immediately upon its definition. This is a core pattern and serves as the foundation for many other patterns of JavaScript development.
I am a great fan 🙂 of it because:
- It keeps code to a minimum
- It enforces separation of behavior from presentation
- It provides a closure which prevents naming conflicts
Enormously – (Why you should say its good?)
- It’s about defining and executing a function all at once.
- You could have that self-executing function return a value and pass the function as a param to another function.
- It’s good for encapsulation.
- It’s also good for block scoping.
- Yeah, you can enclose all your .js files in a self-executing function and can prevent global namespace pollution. 😉
jQuery pursue such struct.
(function($) {
// $() is available here
})(jQuery);
It’s precisely the reason that jQuery doesn’t pollute the global namespace nearly as much as other libraries.
Cheers!
😀
Hi Tonu,
Good post. Keep up the good writing.
LikeLike
“and of-course it dies out when the function terminates”
This is wrong. As long as there’s somewhere in the page or in an event that references the variable you declared in your closure (and there often is), it will remain in memory (just not publicly accessible) until there is no further “next use” (which is when it garbage collected).
var class = (function () {
var private = function () { alert(“Hey, I’m still here!”); };
return ({ test: function () { private(); }});
})();
// more JavaScript
class.test();
This is one of the reasons self-executing functions are so cool – they introduce a public / private scope and keep your private variables in memory (though this can also lead to higher memory reuse if you have multiple closures doing alot of the same stuff).
LikeLike
Thank you very much Dan Beam for bring up such an important issue here. Corrected and added. Thnx again 😀
LikeLike
This is a bit tardy, but to (hopefully) clear things up a bit:
the closure in Dan Beam’s example is the function assigned to “test” in the returned object. Inasmuch as that function is made available outside of the function in which it was defined (and may be executed after the outer function has terminated; and can reference the variables, parameters, and such from the outer function), it becomes a closure.
The preceding example, while illustrating self-executing function behavior, is not a closure.
LikeLike
…or rather, is (the closure) created *because of* the returned/available function (being pedantic now).
LikeLike