Angular - RxJS Operators
Given this code, what will be logged?
import { of } from 'rxjs';
import { map } from 'rxjs/operators';
of(1, 2, 3).pipe(
map(x => x + 1)
).subscribe(console.log);