...

/

Sequence onError Handler

Sequence onError Handler

Learn how to catch errors in a way that they are not caught before the asynchronous code.

We'll cover the following...

Handling errors

We can’t use the conventional try/catch mechanism in callbacks, because it is synchronous. It would run before any asynchronous code, and wouldn’t be able to catch any errors.

With callbacks, this was solved by passing the error (if any) as a parameter to the callback function. This works, but makes the code ...