First resolved Promise Promise.race returns the result from the first resolved Promise. async function slowService() { /* ... */ }async function fastService() { /* ... */ }const winner = await Promise.any([ slowService(), fastService()])