Angular - RxJS Operators
Given the code below, what will be logged to the console?
const source$ = of('A', 'B', 'C');
source$.pipe(
switchMap(letter => of(letter + '1', letter + '2'))
).subscribe(console.log);