In javascript, when would you want to use this:

(function(){
    //Bunch of code...
})();

over this:

//Bunch of code...
link|improve this question

feedback

9 Answers

up vote 53 down vote accepted

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.

link|improve this answer
1  
As example (for those to whom it helps like me): (function(){ var foo = 3; alert(foo); })(); alert(foo); will first alert "3" and then throw an error on the next alert because foo is not defined. – Seth Alexander Bird Apr 12 at 19:23
feedback

Namespacing. JavaScript's scopes are function-level.

link|improve this answer
feedback

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. ;)

More here.

link|improve this answer
feedback

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.

link|improve this answer
2  
What implementations would those be? – Matthew Crumley Feb 26 '09 at 21:21
feedback

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.

link|improve this answer
feedback

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.

link|improve this answer
feedback

Is there a parameter and the "Bunch of code" returns a function?

var a = function(x) { return function() { document.write(x); } }(something);

Closure. The value of something gets used by the function assigned to a. something could have some varying value (for loop) and every time a has a new function.

link|improve this answer
+1; I prefer an explicit var x = something; in the outer function over x as parameter, though: imo it's more readable this way... – Christoph Feb 26 '09 at 21:11
@Christoph: If the value of "something" changes after the function gets created, then it will use the new value and not the one at the time of its creation. – stesch Feb 26 '09 at 21:22
@stesch: where did you get that from? As far as I know, that's not the case; the only way to get real references in JS is by using the arguments-object, but even that doesn't work in all browsers – Christoph Feb 26 '09 at 21:50
@Christoph: "JavaScript: The Good Parts", Douglas Crockford (O'Reilly) – stesch Feb 27 '09 at 4:37
@stesch: it doesn't work the way you describe it: the new value will be used if you drop the variable x and depend directly on the lexical scope, ie document.write(something)... – Christoph Feb 27 '09 at 9:56
show 1 more comment
feedback

I can't believe none of the answers mention implied globals.

The (function(){})() construct does not protect agains implied globals, which to me is the bigger concern, see http://yuiblog.com/blog/2006/06/01/global-domination/

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 var App = {} syntax provides a similar level of protection, and may be wrapped in the function block when on 'public' pages. (see Ember.js or SproutCore for real world examples of libraries that use this construct)

As far as private properties go, they are kind of overrated unless you are creating a public framework or library, but if you need to implement them Douglas Crawford has some good ideas.

link|improve this answer
feedback

IIRC it allows you to create private properties and methods.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.