Angular - RxJS Operators
Given this code, what will be the final output in the console?
import { of } from 'rxjs';
import { tap, filter } from 'rxjs/operators';
of(5, 10, 15).pipe(
tap(x => console.log('Value:', x)),
filter(x => x > 7),
tap(x => console.log('Filtered Value:', x))
).subscribe();