In RxJS you can make multiple REST calls, wait that all of them are completed and get a single result.
You can use forkJoin and combineLatest RxJS operators to achieve this result.
So, what’s the difference?
🔗 Follow me on:
For further actions, you may consider blocking this person and/or reporting abuse
Golam_Mostafa -
Arfatur Rahman -
Arkadipta kundu -
Lars-Erik Bruce -
Top comments (2)
What's difference with Promise.all ?
For example, such that you can easily cancel requests.