Created
June 28, 2015 15:26
-
-
Save PieterScheffers/182c042ccd497348d122 to your computer and use it in GitHub Desktop.
Javascript - For Loop
This file contains 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 i, elem, b = [ 1, 2, 3, 4, 5, 6, 7, 8, 9 ]; | |
for(i = 0; elem = b[i],i < b.length; i++) { | |
console.log(elem); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment