Angular - RxJS Operators
Identify the error in this code snippet using
tap:import { of } from 'rxjs';
import { tap } from 'rxjs/operators';
of(1, 2, 3).pipe(
tap(console.log('Value'))
).subscribe();