Skip to content

Instantly share code, notes, and snippets.

@vldvel
Created March 2, 2018 06:52
Show Gist options
  • Save vldvel/322bf7ea95d48b07993db3293db074e4 to your computer and use it in GitHub Desktop.
Save vldvel/322bf7ea95d48b07993db3293db074e4 to your computer and use it in GitHub Desktop.
function * generator() {
yield 1;
return 2;
yield 3; // we will never reach this yield
}
const gen = generator();
gen.next(); // {value: 1, done: false}
gen.next(); // {value: 2, done: true}
gen.next(); // {value: undefined, done: true}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment