var foo = (function(){
var x = 0;
return function(){return x++;};
})()
Why the var x = 0 expression only runs once is my biggest misunderstanding about this.
Why the var x = 0 expression only runs once is my biggest misunderstanding about this. |
|||||
|
|
Your code:
is equivalent to this code:
It's easy to see, when you break it up like this, that the function So now, What's more... no other code now has access to |
|||||||||||||||
|
|
The variable Declares a variable named So at this point, The way you would invoke this is:
The first time this is invoked, the value returned will be Well, wait a minute..., shouldn't it be You are on the right track, but the reason why in this case this isn't true is because of the difference between pre-increment and post-increment. ( This example illustrates the concept of closures, which essentially means that inner functions have access to the variables defined in their surrounding functions. |
|||||||
|
|
Let's break it down... First we define an anonymous function:
We then immediately execute it:
The result of this execution is another function:
And the x=0 is captured by the closure when we created the above function. We then assign this resulting function to foo:
With the value of x captured by the closure. Whenever foo is executed, x is incremented. |
|||
|
|
|
The anonymous function gets invoked immediately by the So |
|||
|
|
|
Actually in this case Check it out in action - http://jsfiddle.net/3X283/ |
|||||
|
|
This is what is called a closure theere are two functions defined - the inner one (which is the closure) and the outer one which creates and returns the closure. Your code calls the outer function immediately and assigns the result (the closure) to Note the code inside the closure does not include the statement The
|
||||
|
|