Skip to content

Instantly share code, notes, and snippets.

@RavenZZ
Created August 5, 2016 01:51
Show Gist options
  • Select an option

  • Save RavenZZ/d51b4762ef1f56613309f2a1b41ce414 to your computer and use it in GitHub Desktop.

Select an option

Save RavenZZ/d51b4762ef1f56613309f2a1b41ce414 to your computer and use it in GitHub Desktop.
javascript模拟线程阻塞
function sleep(milliSeconds) {
var startTime = new Date().getTime();
while (new Date().getTime() < startTime + milliSeconds);
}
@huangyingjie
Copy link

点赞,Promise的方案阻塞不了主线程

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment