Skip to content

Instantly share code, notes, and snippets.

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