Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I used to know what this meant but im struggling now...

Is this basically saying document.onload?

(function () {

})();
share|improve this question
4  
btw, although you will see people calling this function 'self-invoking', that's clearly not true. The term iife has the advantage of accuracy. – AakashM Nov 22 '11 at 14:43
1  
This gives a great explanation of this construct. It's also where the term "IIFE" originated. benalman.com/news/2010/11/… – jeremysawesome Jan 5 '12 at 15:33

8 Answers

It's a self invoking anonymous function.
It executes immediately after it's parsed.
It has nothing to do with any event-handler for any events (such as document.onload).
The first pair of parenthesis ((function(){/*...*/})) make the function an expression and the second ((function(){/*...*/})()) calls the function that results from that evaluated expression.
This pattern is often used when trying to avoid polluting the global namespace, because all the variables used in the function are not visible outside it's scope.
This is why, maybe, you confused this construction with an event-handler for document.onload, because it's often used as this :

(function(){
    // all your code here
    var foo = function(){};
    window.load = foo;
    // ...
})();
// foo is unreachable here (it's undefined)
share|improve this answer

It declares an anonymous function, then calls it:

(function () {
   // anonymous function
})(arguments);
share|improve this answer

That is a self-invoking anonymous function. This blog post does a good job explaining them and their usage:

http://blog.themeforest.net/tutorials/ask-jw-decoding-self-invoking-anonymous-functions/

share|improve this answer

That is saying execute immediately.

so if I do:

var val = (function(){
     var a = 0;  // in the scope of this function
     return function(x){
         a += x;
         return a;
     };
})();

alert(val(10)); //10
alert(val(11)); //21

Fiddle: http://jsfiddle.net/maniator/LqvpQ/


Second Example:

var val = (function(){
     return 13 + 5;
})();

alert(val); //18
share|improve this answer
I dont get it what does that prove its self invoking? – Exitos Nov 22 '11 at 14:22
@Exitos because it returns that function. Ill give a second example. – Neal Nov 22 '11 at 14:23
@Exitos see my second example. – Neal Nov 22 '11 at 14:24

It's just an anonymous function that is executed right after it's created.

It's just as if you assigned it to a variable, and used it right after, only without the variable:

var f = function () {
};
f();

In jQuery there is a similar construct that you might be thinking of:

$(function(){
});

That is the short form of binding the ready event:

$(document).ready(function(){
});
share|improve this answer

No, this construct just creates a scope for naming. If you break it in parts you can see that you have an external

(...)();

That is a function invocation. Inside the parenthesis you have:

function() {}

That is an anonymous function. Everything that is declared with var inside the construct will be visible only inside the same construct and will not pollute the global namespace.

share|improve this answer

This an anonymouse function which is self invoking

share|improve this answer

Self-executing anonymous function. It's executed as soon as it is created.

One short and dummy example where this is useful is:

function search(el){
 var list = (function(){
    var l = []; 
    for(var i = 0; i < 9; i++){
     l.push(i);
    }
    return l;
  })();

  for(var i = 0, l = list.length; i < l; i++){
     if(list[i] == el) return list[i];
  } 
} 

So instead of creating a list each time, you create it only once (less overhead).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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