Introduction to RxJS

Let’s learn about RxJS.

We'll cover the following...

In the last project we worked on, we saw a line of code that’s still somewhat of a mystery. I’m referring to this line in the app.component.ts file:

this.cocktail.search(query).subscribe((response: any) => {
  this.drinks = response.drinks;
});
...