Created
August 16, 2016 18:46
-
-
Save robbestad/5eb2fab5735fd1e370a03d87770a1cf1 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| function* halloGen() { | |
| yield "Hallo verden!"; | |
| } | |
| const gen = halloGen(); | |
| console.log( | |
| gen.next().value | |
| ); | |
| // ”Hallo verden!” | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment