Skip to content

Instantly share code, notes, and snippets.

@novonimo
Created September 13, 2019 07:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save novonimo/43b33d38497dcd68fa004fe95639ea04 to your computer and use it in GitHub Desktop.
Save novonimo/43b33d38497dcd68fa004fe95639ea04 to your computer and use it in GitHub Desktop.
function* myGenerator () {
yield 1;
yield 2;
return 3;
};
const myIterator = myGenerator();
console.log(myIterator.next());
console.log("************************");
console.log(myIterator.next());
console.log("************************");
console.log(myIterator.next());
console.log("************************");
console.log(myIterator.next());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment