Skip to content

Instantly share code, notes, and snippets.

@singhArmani
Created March 21, 2019 03:27
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 singhArmani/2d59d61b1d10076e17ac8b897bb148d2 to your computer and use it in GitHub Desktop.
Save singhArmani/2d59d61b1d10076e17ac8b897bb148d2 to your computer and use it in GitHub Desktop.
var obj = { x: 1, y: 2, z: 3 };
obj[Symbol.iterator] = function*() {
yield 1;
yield 2;
yield 3;
};
[...obj]; // print [1, 2, 3]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment