Sequential awaits run one at a time. For parallel execution, start all promises first, then await them.
// Sequential (slow)
const a = await fetchA();
const b = await fetchB();
// Parallel (fast)
const [a, b] = await Promise.all([
fetchA(),
fetchB()
]);
Use Promise.all when operations don't depend on each other.