0 votes
in Angular by
How do Observables differ from Promises?

1 Answer

0 votes
by

As soon as a promise is made, the execution takes place. However, this is not the case with observables because they are lazy. This means that nothing happens until a subscription is made. While promises handle a single event, observable is a stream that allows passing of more than one event. A callback is made for each event in an observable.

Related questions

0 votes
asked Aug 13, 2023 in Angular by DavidAnderson
0 votes
asked Apr 2, 2023 in RASA by SakshiSharma
...