...

/

Advantages of the Reactive Pattern

Advantages of the Reactive Pattern

Learn about the advantages of reactive patterns.

You might have guessed the first advantage: we don’t have to manually manage subscriptions and unsubscriptions, and what a relief! But there are a lot of other advantages; it’s not only about the async pipe. Let’s look at the other advantages in more detail.

Using the declarative approach

Let’s shed light on the fact that we don’t explicitly use the subscribe() method. What’s wrong with subscribe()? Well, ...