(function() {})() and its jQuery-specific cousin (function($) {})(jQuery) pop up all the time in Javascript code.
How do these constructs work, and what problems do they solve?
Examples appreciated
|
How do these constructs work, and what problems do they solve? Examples appreciated |
|||
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
With the increasing popularity of JavaScript frameworks, the
Specifically, that's an anonymous function declaration which gets executed immediately passing the main jQuery object as parameter. Inside that function, you can use |
|||||||||||||||
|
|
This is a technique used to limit variable scope; it's the only way to prevent variables from polluting the global namespace.
|
|||||||||||
|
|
1) It defines an anonymous function and executes it straight away. 2) It's usually done so as not to pollute the global namespace with unwanted code. 3) You need to expose some methods from it, anything declared inside will be "private", for example:
Or, alternatively:
The point is, there are many ways you can use it, but the result stays the same. |
|||||
|
|
It explains here that your first construct provides scope for variables.
|
|||
|
|
|
Another reason to do this is to remove any confusion over which framework's
By passing in the |
|||||
|
|
This is considered a closure. It means the code contained will run within its own lexical scope. This means you can define new variables and functions and they won't collide with the namespace used in code outside of the closure.
This will generate three popups, demonstrating that the
|
|||||||||||
|
|
It's just an anonymous function that is called immediately. You could first create the function and then call it, and you get the same effect:
works as:
You can also do the same with a named function:
The code that you call jQuery-specific is only that in the sense that you use the jQuery object in it. It's just an anonymous fuction with a parameter, that is called immediately. You can do the same thing in two steps, and you can do it with any parameters you like:
The problem that this solves is that it creates a closuse for the code in the function. You can declare variables in it without polluting the global namespace, thus reducing the risk of conflicts when using one script along with another. In the specific case for jQuery you use it in compatibility mode where it doesn't declare the name $ as an alias for jQuery. By sending in the jQuery object into the closure and naming the parameter $ you can still use the same syntax as without compatibility mode. |
|||
|
|
They are often used in jQuery plugins. As explained in the jQuery Plugins Authoring Guide all variables declared inside |
|||||
|
|
As others have said, they both define anonymous functions that are invoked immediately. I generally wrap my JavaScript class declarations in this structure in order to create a static private scope for the class. I can then place constant data, static methods, event handlers, or anything else in that scope and it will only be visible to instances of the class:
In this example, the |
|||
|
|
|
Another use for this construct is to "capture" the values of local variables that will be used in a closure. For example:
The above code will make all three buttons pop up "3". On the other hand:
This will make the three buttons pop up "0", "1", and "2" as expected. The reason for this is that a closure keeps a reference to its enclosing stack frame, which holds the current values of its variables. If those variables change before the closure executes, then the closure will see only the latest values, not the values as they were at the time the closure was created. By wrapping the closure creation inside another function as in the second example above, the current value of the variable |
|||||||
|
|
That is basically to namespace your JavaScript code. For example, you can place any variables or functions within there, and from the outside, they don't exist in that scope. So when you encapsulate everything in there, you don't have to worry about clashes. The
Evan Trimboli covers the rest in his answer. |
||||
|
|
|
It's a self-invoking function. Kind of like shorthand for writing
|
|||
|
|
|
Because the Some really good insights and answers provided in the videos. That is what I happened to be doing at the moment when I saw your question. |
||||
|
|
is the way to define an anonymous function in javascript. They can give you the ability to execute a function in the context of another function (where you might not have that ability otherwise). |
|||
|
|
|
What the above code is doing is creating an anonymous function on line 1, and then calling it on line 3 with 0 arguments. This effectively encapsulates all functions and variables defined within that library, because all of the functions will be accessible only inside that anonymous function. This is good practice, and the reasoning behind it is to avoid polluting the global namespace with variables and functions, which could be clobbered by other pieces of Javascript throughout the site. To clarify how the function is called, consider the simple example: If you have this single line of Javascript included, it will invoke automatically without explicitly calling it:
So, take that idea, and apply it to this example:
The end result is similar, because the anonymous function is invoked just like the previous example. |
|||||||||
|
jQueryas an argument. – Georg Schölly Oct 28 '09 at 18:40