How come I can say:
var myFunction = function() {
setTimeout(myFunction, 1000);
}
myFunction();
Why does the function call in the setTimeout not require a parenthesis, but the last line does?
|
How come I can say:
Why does the function call in the |
||||
|
|
|
The purpose of setTimeout is running code after some time elapses. You need to pass just the function to it (so setTimeout can itself call the function when appropriate) because if you called the function (with the parenthesis) before passing it to setTimeout it would execute now instead of after 1 second. |
|||
|
|
|
The Function calls require parentheses (even if the function takes no parameters). Nutshell: Digging Deeper: There are circumstances where
So:
Finally:
This calls * Or a string to be evaluated, but a reference is preferred. |
|||||||||||||
|
|
When you use the parenthesis, it's saying 'call this function now'. So if you say |
|||
|
In line 2, the function |
|||||
|