I've been looking on info about self-invoking functions, and somewhere I stumbled on this notation:
+function(){}
Can someone explain to me what the + sign in front of the function means/does?
|
I've been looking on info about self-invoking functions, and somewhere I stumbled on this notation:
Can someone explain to me what the |
|||||
|
|
It forces the parser to treat the part following the
Without the
|
|||||||||||||||||||
|
|
Subsidiary to @TJCrowder's answer,
So in front of a function it can be a way to force the function's result to be interpreted as a number. I doubt it happens yet, but theoretically the JIT could use that to compile the function as a numerical-only function etc. However, to prevent the unary plus being a concatenation when used in a larger expression, you would need parentheses:
|
|||||||||||
|
|
So the short answer is that it prevents a syntax error, by using the function results in one way or another. You can also instruct the engine that you're not even interested in the return value by using the
Of course, putting braces around the whole thing also serves that purpose. |
|||
|
|