Which RxJS operator should be used for a sequence of writes that must be applied in order?
- A switchMap
- B mergeMap
- C concatMap
- D exhaustMap
Answer
concatMap
concatMap queues inner observables and runs them one at a time in order. mergeMap would run them concurrently with no ordering guarantee.





