November 2019
Beginner
804 pages
20h 1m
English
The main concept of the RxJS library is Observable, which is an abstraction for an array of items over time (that is, a stream of values).
Observables can do the following:
Creating observables is easy, and RxJS provides operators which can create Observable instances from different sources.
Here are a few examples.
The of (https://www.learnrxjs.io/operators/creation/of.html) operator lets you create observables from a set of values:
import { of } from 'rxjs';
const myObservable = of(1,3,3,7);
//...
The from (https://www.learnrxjs.io/operators/creation/from.html ...
Read now
Unlock full access