of([1,2,3]).subscribe(console.log)
prints:[1,2,3]
[1,2,3]
But:
of([1,2,3]).pipe(concatAll()).subscribe(console.log)