FrontendInterviews.dev

602. Async/Await and Microtask Order

Easy•

Predict the output.

async function run() {
  console.log('A')
  await Promise.resolve()
  console.log('B')
}

run()
console.log('C')

What is logged?

Select an option and submit your answer.
Next Problem