Skip to content

Instantly share code, notes, and snippets.

@coltpini
Last active May 8, 2017 17:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save coltpini/95330e2945e978ed2fc0e070c70246c0 to your computer and use it in GitHub Desktop.
Save coltpini/95330e2945e978ed2fc0e070c70246c0 to your computer and use it in GitHub Desktop.
function *exponents(start) {
yield start ** 1;
yield start ** 2;
yield start ** 3;
return 4;
}
for (let val of exponents(4)) {
console.log(val);
}
// 4, 16, 64
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment