Skip to content

Instantly share code, notes, and snippets.

@yoelmacia
Created December 14, 2019 11:43
Show Gist options
  • Save yoelmacia/3f7a1a2238281b7aca0cf852c90154e4 to your computer and use it in GitHub Desktop.
Save yoelmacia/3f7a1a2238281b7aca0cf852c90154e4 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();
console.log(generator); // Object [Generator] {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment