Piping Data Through Operators

Let's see how you can use an operator in the pipe() method to manipulate data in the observable stream.

We'll cover the following...

Operator and .pipe method

An operator is a tool provided by RxJS that allows you to manipulate the data in the observable as it streams through.

You can import operators from 'rxjs/operators'. To use an operator, pass it into the ...