Skip to content

Instantly share code, notes, and snippets.

@achisholm
Created February 17, 2014 21:30
Show Gist options
  • Save achisholm/9059586 to your computer and use it in GitHub Desktop.
Save achisholm/9059586 to your computer and use it in GitHub Desktop.
The most basic of JavaScript programs.
var i = 0;
while (i < 999) {
console.log("Hello World!");
i++;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment