Difference between Promises vs Observables
Observable can provide a stream of data, also can filter the results and you can unsubscribe. It is not possible to do with Promises. Observable can return a value synchronously or asynchronously. Promise is always asynchronous Difference between Promises vs Observables