Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

setTimeut 延迟时间 #130

Open
lovelmh13 opened this issue Jul 26, 2021 · 0 comments
Open

setTimeut 延迟时间 #130

lovelmh13 opened this issue Jul 26, 2021 · 0 comments

Comments

@lovelmh13
Copy link
Owner

setTimeout(() => { console.log(1) }, 1)
 
setTimeout(() => { console.log(0) }, 0)

先输出1,再输出0。本来以为是 最小延迟 4ms 的原因。

但是如果先打印 setTimeout(() => { console.log(2) }, 2)

setTimeout(() => { console.log(2) }, 2)
 
setTimeout(() => { console.log(1) }, 1)
 
setTimeout(() => { console.log(0) }, 0)

则是 → 1 0 2 的顺序

依然不符合 最小延迟 4ms ,这是为什么?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant