Skip to content

Instantly share code, notes, and snippets.

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

  • Save robbestad/954304951dd6b9ba479e0a96eeb40b27 to your computer and use it in GitHub Desktop.

Select an option

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