Skip to content

Instantly share code, notes, and snippets.

@ahamedali95
Created May 10, 2020 20:25
Show Gist options
  • Save ahamedali95/abe4be9eaa2549c91c6573dbaad0574f to your computer and use it in GitHub Desktop.
Save ahamedali95/abe4be9eaa2549c91c6573dbaad0574f to your computer and use it in GitHub Desktop.
function *generator() {
yield 1;
return null;
yield 2;
}
const g = generator();
console.log(g.next()); //=> {value: 1, done: false}
console.log(g.next()); //=> {value: null, done: true}
console.log(g.next()); //=> {value: undefined, done: true}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment