Last active
December 17, 2015 04:39
-
-
Save boj/5551940 to your computer and use it in GitHub Desktop.
This file contains 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
<html> | |
<head> | |
<title> while </title> | |
</head> | |
<body> | |
<script type="text/javascript"> | |
var i=0; | |
while (i<=10) { | |
document.write("The number is " + i); | |
document.write("<br />"); | |
i = i + 1; | |
} | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment