Angular - RxJS Operators
Find the mistake in this Angular RxJS code snippet:
import { of } from 'rxjs';
import { map, filter } from 'rxjs/operators';
of(1, 2, 3).pipe(
map(x => x * 3)
filter(x => x > 4)
).subscribe(console.log);