Skip to content

Instantly share code, notes, and snippets.

@robbestad
Created August 16, 2016 18:40
Show Gist options
  • Select an option

  • Save robbestad/549958480847c80e77ecf4bfba0fb10b to your computer and use it in GitHub Desktop.

Select an option

Save robbestad/549958480847c80e77ecf4bfba0fb10b to your computer and use it in GitHub Desktop.
function* generator() {
let i = 0;
while (true) {
yield ++i % 2 === 0;
}
}
const gen = generator();
for (let i = 0; i < 5; i++) {
console.log(gen.next().value);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment