Skip to content

Instantly share code, notes, and snippets.

@bbaaxx
Created November 15, 2017 18:40
Show Gist options
  • Select an option

  • Save bbaaxx/770d5992123b9dff15a6109c04536a15 to your computer and use it in GitHub Desktop.

Select an option

Save bbaaxx/770d5992123b9dff15a6109c04536a15 to your computer and use it in GitHub Desktop.
Code for blog post about iterators iterables and generators with ES6
for (let char of 'yo!') { console.log(char); }
// y
// o
// !
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment