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

Inside this loop, what values does it await? The goal is to run the three tasks one after another.

const urls = ['a', 'b', 'c']; for (const u of urls) { const data = await fetchData(u); console.log(data); }