DEV Community

Discussion on: Clarifying RxJS Observables under 5 minutes

Collapse
 
anduser96 profile image
Andrei Gatej

Promises won't restart when you write multiple then methods to the same promise; they execute asynchronously and get the same value.

I just learnt these terms a few days ago: promises are multicast(they share the same value), whereas Observables are unicast.