Skip to content

Instantly share code, notes, and snippets.

@shigemk2
Created February 26, 2015 11:14
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 shigemk2/6559be3648eee9be466f to your computer and use it in GitHub Desktop.
Save shigemk2/6559be3648eee9be466f to your computer and use it in GitHub Desktop.
var array = ['aaa', 'bbb', 'ccc', 'ddd', 'eee'];
for (var index in array) {
console.log(index + ': ' + array[index]);
}
console.log(index);
// 0: aaa
// 1: bbb
// 2: ccc
// 3: ddd
// 4: eee
// 4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment