Skip to content

Instantly share code, notes, and snippets.

@bellaajhabib
Created February 22, 2018 20:55
Show Gist options
  • Save bellaajhabib/0eaac78464dcbc9492427a2b7d3f536c to your computer and use it in GitHub Desktop.
Save bellaajhabib/0eaac78464dcbc9492427a2b7d3f536c to your computer and use it in GitHub Desktop.
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