The Two Merges
Let's see how we can use merge as a constructor as well as an operator.
We'll cover the following...
We'll cover the following...
The two merges
In the below example, merge is used as a constructor (a way to create a new observable).
In cases where everything starts at the same time (like the loading bar), merge used as a constructor is simpler than the operator form.
However, it’s also an operator:
merge as “operator”
The operator form of merge comes in handy when you’re in the middle of an observable chain and want to add in more data. ...