Skip to content

Instantly share code, notes, and snippets.

@shonnly
Created April 26, 2020 20:28
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 shonnly/ad3367360b88527fab752b75a99f059b to your computer and use it in GitHub Desktop.
Save shonnly/ad3367360b88527fab752b75a99f059b to your computer and use it in GitHub Desktop.
var obj = {};
obj[Symbol.iterator] = function* () {yield 'Hatfield', yield 'Ulrich', yield 'Hammet'};
console.log(...obj); // Hatfield Ulrich Hammet
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment