Skip to content

Instantly share code, notes, and snippets.

@vldvel
Created March 1, 2018 14:52
Show Gist options
  • Save vldvel/086c3ef15cc94ccf34b10b342d0c91a4 to your computer and use it in GitHub Desktop.
Save vldvel/086c3ef15cc94ccf34b10b342d0c91a4 to your computer and use it in GitHub Desktop.
function * generator() {
yield 1;
yield 2;
yield 3;
}
const gen = generator();
gen.throw('Something bad'); // Error Uncaught Something bad
gen.next(); // {value: undefined, done: true}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment