Angular - RxJS Operators
Which of the following is the correct syntax to use
catchError inside an Observable pipe?catchError inside an Observable pipe?catchError is used inside pipe() and takes a function with an error parameter returning a new Observable.pipe(catchError(error => of('Error caught'))). Other options misuse method chaining or syntax.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions