Angular - RxJS Operators
Consider the following Angular RxJS code:
What will be the output?
import { of } from 'rxjs';
import { map, filter } from 'rxjs/operators';
of(2, 3, 5, 8).pipe(
filter(num => num > 3),
map(num => num + 1)
).subscribe(console.log);What will be the output?
