Skip to content

Instantly share code, notes, and snippets.

Created August 18, 2017 06:24
Show Gist options
  • Save anonymous/536dfbaa878b9fc42f6019ce7f20882f to your computer and use it in GitHub Desktop.
Save anonymous/536dfbaa878b9fc42f6019ce7f20882f to your computer and use it in GitHub Desktop.
ArrayIndexing
var myArray = [1, 5, 3, 42];
var index;
for (index = 0; index < myArray.length; index = index + 1) {
var item = myArray[index];
console.log("item[" + index + "] = " + item);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment