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

Inside the loop, what does `await` do to the timing of this code?

for (const url of urls) { const res = await fetch(url); console.log(res.status); }