Using a Subscription

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

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)
);
...
Access this course and 1400+ top-rated courses and projects.