I have watch a few courses on Angular and have found there are different ways to manage data from an Http request.
- Using Observables,
.map()
,.subscribe()
- Using Promises,
.toPromise()
,.then()
,.catch()
I have used toPromise()
in my application as I find it similar to the AngularJS Http services.
In what scenario would I need to use Observables?