Created
December 8, 2015 13:21
-
-
Save kahlil/95b78801d19570bba279 to your computer and use it in GitHub Desktop.
Observables Basics: Events are basically collections over time.
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
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