Is setTimeout with no delay the same as executing the function instantly?

前端 未结 3 2262
夕颜
夕颜 2020-11-27 18:31

I am looking at some existing code in a web application. I saw this:

window.setTimeout(function () { ... })

Is this the same as just executing t

3条回答
  •  清歌不尽
    2020-11-27 19:06

    It won't necessarily run right away, neither will explicitly setting the delay to 0. The reason is that setTimeout removes the function from the execution queue and it will only be invoked after JavaScript has finished with the current execution queue.

    console.log(1);
    setTimeout(function() {console.log(2)});
    console.log(3);
    console.log(4);
    console.log(5);
    //console logs 1,3,4,5,2
    

    for more details see http://javascriptweblog.wordpress.com/2010/06/28/understanding-javascript-timers/

提交回复
热议问题