Angular - RxJS Operators
Given this code, what will be the output?
import { of } from 'rxjs';
import { map, filter } from 'rxjs/operators';
of(5, 10, 15).pipe(
map(x => x + 1),
filter(x => x < 12)
).subscribe(console.log);