Angular - RxJS Operators
What will be logged to the console?
import { of } from 'rxjs';
import { map, filter } from 'rxjs/operators';
of(1, 2, 3, 4).pipe(
filter(x => x % 2 === 0),
map(x => x * 10)
).subscribe(console.log);