Skip to content

Instantly share code, notes, and snippets.

@vldvel
Created March 2, 2018 07:37
Show Gist options
  • Save vldvel/5d0c25eae0d69df5c351b11b98f8482e to your computer and use it in GitHub Desktop.
Save vldvel/5d0c25eae0d69df5c351b11b98f8482e to your computer and use it in GitHub Desktop.
function * generator(arr) {
for (const el in arr)
yield el;
}
const gen = generator([0, 1, 2]);
for (const g of gen) {
console.log(g); // 0 -> 1 -> 2
}
gen.next(); // {value: undefined, done: true}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment