Skip to content

Instantly share code, notes, and snippets.

@bbaaxx
Last active November 18, 2017 23:09
Show Gist options
  • Save bbaaxx/6cfcf04960fcff945e102290a68d3ec2 to your computer and use it in GitHub Desktop.
Save bbaaxx/6cfcf04960fcff945e102290a68d3ec2 to your computer and use it in GitHub Desktop.
Code for blog post about iterators iterables and generators with ES6
const someArray = [2, 4, 8];
for (let n of someArray) { console.log(n); }
// 2
// 4
// 8
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment