What is the difference between Promise and Observable in Angular?
Promise
Observable
An example on each would be helpful in understanding both the cases. In w
Promises are focused only for single values or resolves, observables are stream of data.
Observables can be canceled but promises can't be canceled.
The least known one, atleast to me is