concat
signature: concat(observables: ...*): Observable
concat(observables: ...*): ObservableSubscribe to observables in order as previous completes
Examples
// RxJS v6+
import { of, concat } from 'rxjs';
concat(
of(1, 2, 3),
// subscribed after first completes
of(4, 5, 6),
// subscribed after second completes
of(7, 8, 9)
)
// log: 1, 2, 3, 4, 5, 6, 7, 8, 9
.subscribe(console.log);Related Recipes
Additional Resources
Last updated