Created
July 1, 2019 17:42
-
-
Save raloliver/90f869c931e53c0d71b66701b45bf742 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
var observable = Rx.Observable.create(observer => { | |
observer.next(5); | |
}) | |
observable.subscribe( | |
value => console.log(`My Value is ${value}`) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment