You’re using Observable subscribe() wrong!

Guillaume Ferber
11 min readFeb 10, 2023

Observables are a powerful and essential tool in Angular, allowing us to handle asynchronous data and react to changes in real time. The magic of RxJs makes an Observable an object that we can create and pass values to and an object that we can listen to when we subscribe to this Observable. But are we really subscribing to our Observables the right way?

--

--