Skip to content

Instantly share code, notes, and snippets.

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