What is the behavior of uncaught errors in React 16?

  • They are ignored
  • They are logged to the console
  • They trigger a fatal error and crash the application
  • They trigger an error boundary to catch the error
Uncaught errors in React 16 and later versions trigger a fatal error and crash the application. This behavior was introduced in order to prevent subtle bugs and inconsistencies that could result from errors being silently ignored or logged to the console.
Add your answer
Loading...

Leave a comment

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