Skip to content

Instantly share code, notes, and snippets.

@jack5241027
Forked from fillano/test922e.js
Created January 13, 2016 07:09
Show Gist options
  • Select an option

  • Save jack5241027/cfdd23769e374f815510 to your computer and use it in GitHub Desktop.

Select an option

Save jack5241027/cfdd23769e374f815510 to your computer and use it in GitHub Desktop.
function * gen() {
console.log('start');
var got = yield 'called';
console.log(got);
}
var g = gen();
var a = g.next();
//顯示start
var b = g.next('hello generator');
//顯示hello generator
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment