Skip to content

Instantly share code, notes, and snippets.

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