Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- console.log(1);
- setTimeout(function () {
- console.log(2);
- }, 0);
- Promise.resolve()
- .then(function () {
- console.log(3);
- })
- .then(function () {
- console.log(4);
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement