Skip to content

Instantly share code, notes, and snippets.

@PieterScheffers
Created June 28, 2015 15:26
Show Gist options
  • Save PieterScheffers/182c042ccd497348d122 to your computer and use it in GitHub Desktop.
Save PieterScheffers/182c042ccd497348d122 to your computer and use it in GitHub Desktop.
Javascript - For Loop
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