How can I subscribe to a series of numbers?
Rx.Observable.of(1, 2, 3, 4, 5)
.subscribe(value => console.log(value))
PreviousHow can I check which of several booleans is true?NextHow can I subscribe to an array of numbers?
Last updated
Was this helpful?