Want to filter array of objects in Angular8 with Observable. Did it with @Pipe but client recommends to use Observable.
I have an array. Need to filter it with 3 different inputs given in the UI. Done this using the @Pipe like below.
<tr *ngFor="let d of data | filter : input1: input2: input3 >
<td></td>
<td></td>
<td></td>
</tr>
But recommendation is to use observable. How can we do this?