Skip to content

Instantly share code, notes, and snippets.

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

  • Save robbestad/5eb2fab5735fd1e370a03d87770a1cf1 to your computer and use it in GitHub Desktop.

Select an option

Save robbestad/5eb2fab5735fd1e370a03d87770a1cf1 to your computer and use it in GitHub Desktop.
function* halloGen() {
yield "Hallo verden!";
}
const gen = halloGen();
console.log(
gen.next().value
);
// ”Hallo verden!”
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment