A Pen by Alan Moore on CodePen.
-
-
Save kahunamoore/197614c38a640243ec95f26f28df03af to your computer and use it in GitHub Desktop.
ArrayIndexing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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