Skip to content

Instantly share code, notes, and snippets.

@ahamedali95
Created May 10, 2020 21:06
Show Gist options
  • Save ahamedali95/83aaa6aa3fbfbfcce606a113c6b0211f to your computer and use it in GitHub Desktop.
Save ahamedali95/83aaa6aa3fbfbfcce606a113c6b0211f to your computer and use it in GitHub Desktop.
function *generator(i) {
yield i;
yield i + 1;
}
const g = generator(10);
console.log(g.next()); //=> {value: 10, done: false}
console.log(g.next()); //=> {value: 11, done: false}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment