Skip to content

Instantly share code, notes, and snippets.

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

  • Save robbestad/538a1c82ad8f391c121812c745e809e9 to your computer and use it in GitHub Desktop.

Select an option

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