HTML contoh chap6 mudul lab 5

<html>
<body>
<script type="text/javascript">
for (i = 0; i <= 5; i++)
{
document.write("The number is " + i)
document.write("<br>")
}
</script>
<p>Explanation:</p>
<p>The for loop sets <b>i</b> equal to 0.</p>
<p>As long as <b>i</b> is less than , or equal to, 5, the loop will continue to
run.</p>
<p><b>i</b> will increase by 1 each time the loop runs.</p>
</body>
</html>
Category: 0 komentar

0 komentar:

Posting Komentar