Skip to content

Instantly share code, notes, and snippets.

@fillano
Created March 30, 2014 02:54
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 fillano/9866706 to your computer and use it in GitHub Desktop.
Save fillano/9866706 to your computer and use it in GitHub Desktop.
function * serial() {
var c = 0;
while(true) {
yield c;
c++;
}
}
var s = serial();
console.log(s.next().value);
//顯示 0
console.log(s.next().value);
//顯示 1
console.log(s.next().value);
//顯示 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment