I've seen:
!function(){ //code }();
Used in several places to immediately execute an anonymous function. Normally, it's used in lieu of:
(function(){ //code }())
Anyone know how the ! actually makes the function execute?
|
I've seen:
Used in several places to immediately execute an anonymous function. Normally, it's used in lieu of:
Anyone know how the |
|||||
|
|
What the ! does When you use This forces the function to be evaluated as an expression, which allows it to be invoked immediately inline. Other alternatives You can do this with just about any operator. Here are some examples...
Nice thing about some of these is that the meaning of the operator is not overloaded. The problem with When you use
This will result in a How using a different operator copes with (or avoids) the problem Even an operator like If you do this...
The first The second The result of course is Demonstration of how the operators interact with the functions To prove this, just give each function a return value, then paste it into the console...
You'll get the two |
|||||||||||||||||
|
|
The |
|||||
|