Skip to content

Instantly share code, notes, and snippets.

@vldvel
Last active March 1, 2018 14:23
Show Gist options
  • Save vldvel/5895c294de1894b032ff48a1ff64f044 to your computer and use it in GitHub Desktop.
Save vldvel/5895c294de1894b032ff48a1ff64f044 to your computer and use it in GitHub Desktop.
function * generator(arg = 'Nothing') {
yield arg;
}
const gen0 = generator(); // OK
const gen1 = generator('Hello'); // OK
const gen2 = new generator(); // Not OK
generator().next(); // It will work, but every time from the beginning
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment