Skip to content

Instantly share code, notes, and snippets.

@colintoh
Last active August 29, 2015 14:07
Show Gist options
  • Save colintoh/3905e8a6084524a92b19 to your computer and use it in GitHub Desktop.
Save colintoh/3905e8a6084524a92b19 to your computer and use it in GitHub Desktop.
For loop
var arr = "overzealous optimization programming".split("");
for(var i = 0; i < arr.length; i++) {
console.log(arr[i]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment