How does the Fetch API handle HTTP error statuses (like 404 or 500) in Promises?

  • It doesn't reject the Promise for any HTTP error status
  • It rejects the Promise only for network errors
  • It rejects the Promise for any non-2xx HTTP status
  • It triggers a catch block for network errors and HTTP errors
The Fetch API rejects the Promise for any non-2xx HTTP status, allowing developers to handle errors more effectively. Network errors, however, are still caught separately, providing detailed error handling in both scenarios.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *