Skip to content

Instantly share code, notes, and snippets.

@fitzgen
Created August 2, 2014 22:12
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fitzgen/95f8b2ea672d773f3537 to your computer and use it in GitHub Desktop.
Save fitzgen/95f8b2ea672d773f3537 to your computer and use it in GitHub Desktop.
Generators + prototypes
function* G() { yield this.x; }
G.prototype = { x: 5 };
console.log([...G()]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment