Skip to content

Instantly share code, notes, and snippets.

@langjt
Last active July 3, 2018 09:53
Show Gist options
  • Save langjt/6b0adb14df1a9447fdc9 to your computer and use it in GitHub Desktop.
Save langjt/6b0adb14df1a9447fdc9 to your computer and use it in GitHub Desktop.
事件循环
function printing() {
console.log(1);
setTimeout(function() { console.log(2); }, 1000);
setTimeout(function() { console.log(3); }, 0);
console.log(4);
}
printing();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment