Angular - RxJS Operators
Given the code below, what will be the output?
import { of, throwError } from 'rxjs';
import { catchError } from 'rxjs/operators';
const source$ = throwError(() => new Error('Oops!'));
source$.pipe(
catchError(err => of('Error handled'))
).subscribe(value => console.log(value));