Skip to content

Instantly share code, notes, and snippets.

@dg92
Last active September 17, 2019 18:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dg92/19c518ae89b6888beef872b973b3d485 to your computer and use it in GitHub Desktop.
Save dg92/19c518ae89b6888beef872b973b3d485 to your computer and use it in GitHub Desktop.
| | Short-circuit? | Short-circuits on? | Fulfilled on? | Rejected on? |
|--------------------|:--------------:|------------------------|-------------------------|------------------------|
| Promise.all | ✅ | First rejected promise | All promise fulfilled | First rejected promise |
| Promise.allSettled | ❌ | N/A | Always | N/A |
| Promise.race | ✅ | First settled | First promise fulfilled | First rejected promise |
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment