While loop : While : Language Basics JAVASCRIPT DHTML TUTORIALS


JAVASCRIPT DHTML TUTORIALS » Language Basics » While »

 

While loop



<html>
<body>

<script type="text/javascript">
i = 0
while (i <= 5){
    document.write("The number is " + i)
    document.write("<br>")
    i++
}
</script>

</body>
</html>



           
       



-

Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .

Follow Navioo On Twitter

JAVASCRIPT DHTML TUTORIALS

 Navioo Language Basics
» While