Skip to main content
Journey Uncommon Logo
JourneyUncommon
easyNodeJSpromises and async awaitSingle-choice MCQ

In what order are the three log lines printed?

console.log('1'); Promise.resolve().then(() => console.log('2')); console.log('3');