Skip to content

Instantly share code, notes, and snippets.

@yoelmacia
Created December 14, 2019 12:19
Show Gist options
  • Save yoelmacia/c50267a3241c0033a13329b42815fb0d to your computer and use it in GitHub Desktop.
Save yoelmacia/c50267a3241c0033a13329b42815fb0d to your computer and use it in GitHub Desktop.
function* printAlphabet() {
console.log("a");
yield 200;
console.log("b");
console.log("c");
}
let generator = printAlphabet();
let value = generator.next(); // a
console.log(value); // {value: 200, done: false}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment