Skip to main content
← ⚑ JavaScript & the browserΒ·Module C3 Β· Lesson 11
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:

  1. `async function` + `await` β€” the only sane way to write fetch / DB / file IO.
  2. `Promise.all([a, b])` β€” fire two independent promises in parallel; await both.
  3. `<script type="module">` β€” opt in to ES modules in the browser. Top-level await works here.
  4. `fetch(url).then(r => r.json())` β€” the universal HTTP shape. await makes 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.

← PreviousNext lesson β†’

Get one Python or web tip a day β€” by email

Short, hand-written, no spam. Unsubscribe in one click.