Angular - RxJS Operators
Consider the following Angular RxJS code:
What will be the order of emitted values?
import { of, interval } from 'rxjs';
import { concatMap, take, map } from 'rxjs/operators';
of('A', 'B').pipe(
concatMap(letter => interval(20).pipe(take(3), map(i => letter + i)))
).subscribe(console.log);What will be the order of emitted values?
