Skip to content

Instantly share code, notes, and snippets.

@7flash
Created May 17, 2017 14:28
Show Gist options
  • Save 7flash/0ca8221075cd5eca1c1568044c323997 to your computer and use it in GitHub Desktop.
Save 7flash/0ca8221075cd5eca1c1568044c323997 to your computer and use it in GitHub Desktop.
function* sequence() {
let i = 0;
while(++i) {
yield i;
}
}
for(let item of sequence()) {
console.log(item);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment