I used to know what this meant but im struggling now...
Is this basically saying document.onload?
(function () {
})();
|
I used to know what this meant but im struggling now... Is this basically saying document.onload?
|
|||||||||
|
|
It's a self invoking anonymous function.
|
||||
|
|
|
It declares an anonymous function, then calls it:
|
|||
|
|
|
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/ |
|||
|
|
|
That is saying execute immediately. so if I do:
Fiddle: http://jsfiddle.net/maniator/LqvpQ/ Second Example:
|
|||
|
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:
In jQuery there is a similar construct that you might be thinking of:
That is the short form of binding the
|
|||
|
|
|
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:
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. |
|||
|
|
|
This an anonymouse function which is self invoking |
|||
|
|
|
Self-executing anonymous function. It's executed as soon as it is created. One short and dummy example where this is useful is:
So instead of creating a list each time, you create it only once (less overhead). |
|||
|
|