Skip to content

Instantly share code, notes, and snippets.

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