Any way I can do a sleep in javascript before it's carry another action?
Example:
var a = 1+3; (sleep 3 sec before the next action here) var b = a + 4;
|
|
Any way I can do a sleep in javascript before it's carry another action? Example: var a = 1+3; (sleep 3 sec before the next action here) var b = a + 4;
|
||
|
|
|
|
You can use
This doesn't really 'sleep' JavaScript—it just executes the function passed to Steve |
|||
|
|
|
|
IMPORTANT: make sure you put quotes around the function you would like to call with setTimeout(). setTimeout() doesn't halt the execution of the script during the timeout period. It just schedules the specified expression to be run at the specified time. |
||||||
|