Skip to content

Instantly share code, notes, and snippets.

@morganney
Created August 2, 2015 22:50
Show Gist options
  • Select an option

  • Save morganney/24735086fd907ebbbf48 to your computer and use it in GitHub Desktop.

Select an option

Save morganney/24735086fd907ebbbf48 to your computer and use it in GitHub Desktop.
Generator Comprehension Example
var it = (for (char of 'Hello World') char.codePointAt(0));
// now you can iterate over the collection of code points on-demand
console.log(it.next().value) // 72
console.log(it.next().value) // 101
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment