Skip to content

Instantly share code, notes, and snippets.

@ianaya89
Created March 14, 2017 04: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 ianaya89/8289cb8999e7f18e8e7d8146a4f43842 to your computer and use it in GitHub Desktop.
Save ianaya89/8289cb8999e7f18e8e7d8146a4f43842 to your computer and use it in GitHub Desktop.
function* idMaker() {
var index = 0;
while(true)
yield index++;
}
var gen = idMaker();
console.log(gen.next().value); // 0
console.log(gen.next().value); // 1
console.log(gen.next().value); // 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment