Using a Subscription

Let's see what subscription means to an observable and how to merge multiple subscriptions in RxJS.

We'll cover the following...

Subscription

There’s one more vocabulary word before this chapter is over: subscription.

While piping through an operator returns an observable:

let someNewObservable$ = anObservable$.pipe(
  map(x => x * 2)
);

A call to ...