Understanding RxJS’s Observable, Observer, Subscription and Observable.create() function
Observable is a stream of data/events to be observed/processed. Observer is as the name itself suggests, a consumer of the Observable stream. Subscription is a relationship between a Observable and…