How can of([1,2,3]).pipe(concatAll()) emit 3 values when of([1,2,3]) emits one?

前端 未结 0 967
暗喜
暗喜 2021-01-14 05:40
of([1,2,3]).subscribe(console.log)

prints:[1,2,3]

But:

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


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题