Angular - RxJS Operators
Identify the error in the following code snippet that uses the
pipe method:import { of } from 'rxjs';
import { map, filter } from 'rxjs/operators';
const obs$ = of(1, 2, 3);
obs$.pipe(
map(x => x * 2),
filter(x => x > 3)
).subscribe(console.log());