Skip to content

Instantly share code, notes, and snippets.

@kahlil
Created December 8, 2015 13:21
Show Gist options
  • Save kahlil/95b78801d19570bba279 to your computer and use it in GitHub Desktop.
Save kahlil/95b78801d19570bba279 to your computer and use it in GitHub Desktop.
Observables Basics: Events are basically collections over time.
const coordinates = Rx.Observable.from([
{ x: 12, y: 32 },
{ x: 45, y: 62 },
{ x: 22, y: 33 }
]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment