Last active
January 19, 2018 01:09
-
-
Save kevinchisholm/69c8a75df1ef90596931e1d815b12e78 to your computer and use it in GitHub Desktop.
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 arr = ["monday","tuesday","wednesday","thursday","friday"]; | |
console.log(arr.length); //5 | |
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 arr = ["monday","tuesday","wednesday","thursday","friday"], | |
len = arr.length - 1; | |
for (var i = 0; i <= len; i++){ | |
console.log( "The value of element # " + i + " is: " + arr[i] ); | |
} |
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
The value of element # 0 is: monday | |
The value of element # 1 is: tuesday | |
The value of element # 2 is: wednesday | |
The value of element # 3 is: thursday | |
The value of element # 4 is: friday |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment