Skip to content

Instantly share code, notes, and snippets.

@sanketmeghani
Last active October 21, 2017 12:01
Show Gist options
  • Save sanketmeghani/98e9bb204db6336a621b2a2d1aebf0bd to your computer and use it in GitHub Desktop.
Save sanketmeghani/98e9bb204db6336a621b2a2d1aebf0bd to your computer and use it in GitHub Desktop.
ES6 Generator Function
function* myFirstGenerator(a) {
console.log('Before yielding');
let b = 5 + (yield(a + 5));
console.log('After yielding');
return b;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment