Skip to content

Instantly share code, notes, and snippets.

@yoelmacia
Last active December 14, 2019 11:28
Show Gist options
  • Save yoelmacia/2077d5d31e957864dc6caf64ef202cce to your computer and use it in GitHub Desktop.
Save yoelmacia/2077d5d31e957864dc6caf64ef202cce 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");
}
printAlphabet(); // no output
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment