Created
February 22, 2018 20:55
-
-
Save bellaajhabib/0eaac78464dcbc9492427a2b7d3f536c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
console.clear(); | |
var source=Rx.Observable.interval(100).take(10).flatMap(x=>Rx.Observable.interval(5000).take(10)); | |
source.subscribe(x=>console.log(x)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment