Which RxJS operator can be used to combine multiple Observables into a single Observable?
- concat
- filter
- merge
- pluck
The merge operator in RxJS is used to combine multiple Observables into a single Observable, emitting values from all source Observables concurrently.
Loading...
Related Quiz
- You are building a shopping cart application using Angular and NgRx. You want to display a smooth animation when items are added to the cart. How would you implement this?
- In which of the following situations would you use an @Input() decorator in a component?
- To transform the items emitted by an Observable and emit the transformation as an Observable, you can use the _____ operator.
- How can you dynamically add form controls in reactive forms?
- How can you convert a cold observable into a hot observable?