Skip to content

Instantly share code, notes, and snippets.

@remy727
Last active May 3, 2023 13:08
Show Gist options
  • Save remy727/fa62fb586826c7f837a5b261299ee60b to your computer and use it in GitHub Desktop.
Save remy727/fa62fb586826c7f837a5b261299ee60b to your computer and use it in GitHub Desktop.
JavaScript Generator Function
function *foo(x) {
while (x < 4) {
x += yield x;
}
return x;
}
var bar = foo(3);
console.log( bar.next(1) );
console.log( bar.next(1) );
console.log( bar.next(1) );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment