Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save robbestad/97933a85398f5355c66650ee0d13b347 to your computer and use it in GitHub Desktop.

Select an option

Save robbestad/97933a85398f5355c66650ee0d13b347 to your computer and use it in GitHub Desktop.
function* generator() {
yield "første";
yield "andre";
yield "tredje";
}
const gen = generator();
var next = {};
while (!next.done) {
next = gen.next();
if (!next.done) {
console.log(next.value);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment