Angular - HTTP Client
You want to retry an HTTP request up to 3 times before handling the error. Which RxJS operator combination correctly implements this in Angular?
pipe(retry(3), catchError(handleError)) retries 3 times then calls error handler.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions