Skip to content

Instantly share code, notes, and snippets.

@gurucharanmk
Created April 24, 2016 15:25
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 gurucharanmk/10e1bc40d6fae8d787e76c00d64b1f86 to your computer and use it in GitHub Desktop.
Save gurucharanmk/10e1bc40d6fae8d787e76c00d64b1f86 to your computer and use it in GitHub Desktop.
let colors = [ "red", "green", "blue" ];
let iter = colors.entries();
let entry;
while (!(entry = iter.next()).done) {
console.log(entry.value);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment