Created
August 9, 2010 21:57
-
-
Save adamkirkwood/516211 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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