I am using the following code in a function:
setTimeout("doSomething(var1)",10000);
But, I also have var1 available as global variable. After 10000 milliseconds, will it call the local var1 or the global var1?
|
I am using the following code in a function:
But, I also have |
||||
|
|
|
This:
will pass the global variable And this:
will pass the local variable Live demo: http://jsfiddle.net/simevidas/EQMaz/ |
|||
|
|