1. 3
    Catch Errors with a React Error Boundary Component
    4m 59s

Catch Errors with a React Error Boundary Component

InstructorMichael Chan

Share this video with your friends

Send Tweet

JavaScript's try/catch feature allows you to isolate errors and prevent them from halting execution in adjacent parts of an app.

Error boundaries do the same for component trees. They allow you to isolate errors and send them to an error reporting service.

Let's learn they are used to catch errors thrown by promises.