Skip to content

Instantly share code, notes, and snippets.

@ashish173
Created December 8, 2016 19:52
Show Gist options
  • Save ashish173/625de1927fb61e7c9f3d19d65e36f08c to your computer and use it in GitHub Desktop.
Save ashish173/625de1927fb61e7c9f3d19d65e36f08c to your computer and use it in GitHub Desktop.
Observable 101
var obs = Rx.Observable.range(0, 10);
obs.subscribe(
data => {
console.log(data);
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment