Learning RxJS
Intro
- Reactive programming is programming with asynchronous data streams, also deal with synchronous.
- A stream is a sequence of ongoing events ordered in time, that can emit:
- Value,
- Error,
- Completed signal
- A stream is a sequence of ongoing events ordered in time, that can emit:
- Everything could be considered as a stream: Single value, Array, Event, etc