Skip to content

Instantly share code, notes, and snippets.

@jergason
Created December 11, 2014 16:47
Show Gist options
  • Save jergason/df67f6d4510cee4f9fc9 to your computer and use it in GitHub Desktop.
Save jergason/df67f6d4510cee4f9fc9 to your computer and use it in GitHub Desktop.
generators
function* generator() {
yield 1;
yield 2;
yield 3;
yield 4;
}
var i = generator();
var next = {};
while (!next.done) {
console.log(next);
next = i.next();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment