Skip to content

Instantly share code, notes, and snippets.

@boj
Last active December 17, 2015 04:39
Show Gist options
  • Save boj/5551940 to your computer and use it in GitHub Desktop.
Save boj/5551940 to your computer and use it in GitHub Desktop.
<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