Skip to content

Instantly share code, notes, and snippets.

@langjt
Last active July 3, 2018 09:52
Show Gist options
  • Save langjt/d9fff1e41efc8e87e0dae8c4681630a1 to your computer and use it in GitHub Desktop.
Save langjt/d9fff1e41efc8e87e0dae8c4681630a1 to your computer and use it in GitHub Desktop.
宏微事件
setTimeout(function() {
console.log(1)
}, 0);
new Promise(function(a, b) {
console.log(2);
for(var i = 0; i < 1000000; i++) {
i == 999999 && a();
}
console.log(3);
}).then(function() {
console.log(4)
});
console.log(5);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment