TaskQuick recap. Inside a <script type='module'>: declare async function getOne() returning Promise.resolve(1) and async function getTwo() returning Promise.resolve(2). Then const [a, b] = await Promise.all([getOne(), getTwo()]). console.log a, b, and a+b.
Recap: Modules & async (C1-C3)
50 XP5 min
Theory
Quick recap — Modules C1-C3
Modern syntax + the module system. The 4 pieces you write every day:
- `async function` + `await` — the only sane way to write fetch / DB / file IO.
- `Promise.all([a, b])` — fire two independent promises in parallel; await both.
- `<script type="module">` — opt in to ES modules in the browser. Top-level await works here.
- `fetch(url).then(r => r.json())` — the universal HTTP shape.
awaitmakes it linear.
If any feels random, redo C1-06 / C2-08 / C3-02 / C3-09 then come back.
🔒
Sign up to start coding
Theory is open to everyone. The interactive editor, live preview, and check are unlocked with a 7-day free trial — card required, cancel anytime.
Sign up — free trial →First 15 lessons in each track are free. No card needed for those.