We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
setTimeout(() => { console.log(1); Promise.resolve().then(() => { console.log(2); }); }, 100); setTimeout(() => { console.log(3); Promise.resolve().then(() => { console.log(4); }); }, 100); // version v10.18.1 1 3 2 4 // version v15.7.0 1 2 3 4
The text was updated successfully, but these errors were encountered:
Execution order between timer queue, next-tickers and microtask queue was changed in Node.js v11
Refs: nodejs/node#22842
Sorry, something went wrong.
closing as answered, pls reopen if there is anything outstanding.
No branches or pull requests
The text was updated successfully, but these errors were encountered: