Skip to content

Instantly share code, notes, and snippets.

@adamkirkwood
Created August 9, 2010 21:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adamkirkwood/516211 to your computer and use it in GitHub Desktop.
Save adamkirkwood/516211 to your computer and use it in GitHub Desktop.
var myname = "Rhadney Capili";
// for loop
for (var i=0; i < 10; i++) {
document.write(myname + "<br />");
};
// while loop
var i = 0;
while (i<10) {
document.write(myname + "<br />");
i++;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment