A Pen by Alan Moore on CodePen.
Created
August 18, 2017 06:24
-
-
Save anonymous/536dfbaa878b9fc42f6019ce7f20882f 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