concat

concat

concat は、複数の Observable を受け取り、1つ目の Observable から値を流して、終わったら次の Observable の値を流す Observable を返す operator です。

const {concat, from} = require('rxjs');

const concat$ = concat(from('01234'), from('abcde'));

concat$.subscribe((value) => console.log(value));

出力

0
1
2
3
4
a
b
c
d
e

参考