Major difference between of and from is that of returns all the values at once and from returns them one by one.
Does this mean that if we use of with Observables, they start behaving in a synchronous way?
And the way to make them behave asynchronous is to use from?