DeepFrontend
Learning Paths
Practice
System Design & DS
Design Studio
Data Structures Curriculum
Real-World Case Studies
Careers
Job Board
Resume Builder
Blog
Sign in
Search
⌘K
Go Pro
Loading compiler resources...
JavaScript Quiz Practice
Active Recall Drill Session
← Exit Session
Question 1 of 1
easy
JavaScript
Three independent API calls need to happen. Which is fastest?
A
await call1(); await call2(); await call3();
B
const [a, b, c] = await Promise.all([call1(), call2(), call3()]);
C
Both are equally fast
D
It depends on which one finishes writing to the database first
Check Answer