Skip to content

Instantly share code, notes, and snippets.

@ferreiratiago
Created June 14, 2018 08:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ferreiratiago/b3a15720147573198d5cf943beea89e4 to your computer and use it in GitHub Desktop.
Save ferreiratiago/b3a15720147573198d5cf943beea89e4 to your computer and use it in GitHub Desktop.
for...of example
var iterable = {
[Symbol.iterator]: myGenerator
};
for (let item of iterable) {
console.log(item);
// 1 2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment