Skip to content

Instantly share code, notes, and snippets.

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

  • Save robbestad/0829f12fa479d7464d67d292c616d8f2 to your computer and use it in GitHub Desktop.

Select an option

Save robbestad/0829f12fa479d7464d67d292c616d8f2 to your computer and use it in GitHub Desktop.
function* generator(...seq) {
while (true) {
for (let item of seq) {
yield item;
}
}
}
const gen = generator('1','2','3');
for (let i = 0; i < 10; i++) {
console.log(gen.next().value);
}
// -> 1 2 3 1 2 3 etc..
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment