Solution - Filtering Operators
values$ .pipe( filter((value) => value !== 4), distinctUntilChanged() ) .subscribe(console.log);