Operator Rundown
Get an overview of all the operators you have studied in this chapter.
We'll cover the following...
This chapter presented us with a few new operators, so here’s a recap of them, along with some scenarios with ways in which we can use them in our applications. Remember, we can always find the complete API documentation for operators on the RxJS GitHub site.
Rx.Observable.from
Default behavior: Synchronous
Since many of the data sources we use in our applications will come from arrays or iterables, it makes sense to have an operator that creates Observables ...