Created
February 3, 2016 14:14
-
-
Save domachine/01404c98738f41b3c30f 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
function *myGenerator() { | |
const a = yield 2; | |
return a; | |
} | |
const it = myGenerator(); | |
it.next(); // => { value: 2, done: false } | |
it.next('hello') // => { value: 'hello', done: true } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment