Which RxJS operator is commonly used to filter items emitted by an Observable based on a condition?

  • catchError
  • filter
  • switchMap
  • takeUntil
The RxJS operator commonly used to filter items emitted by an Observable based on a condition is filter. It allows you to specify a predicate function to determine which items should be included in the output.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *