Plain for loop : For « Language Basics « JavaScript DHTML






Plain for loop

  
<HTML>
<HEAD>
<SCRIPT language="JavaScript">
<!-- 
for (count=1;count<16;count+=1){
    document.write(count+". This is getting way too repetitive.<BR>");
}
//-->
</SCRIPT>
</HEAD>
</HTML>

           
         
    
  








Related examples in the same category

1.For loop for lines
2.Check the loop counter
3. Drawing a Christmas Tree Using Nested For Loops
4.For loop
5.Using a for..in Loop in JavaScript
6.A Demonstration of a Nested Loop
7.A for Loop Used to Count from 0 to 99
8.Using the label Statement
9.Using the continue and break Statements
10.Use of the for Statement
11.The break Statement
12.The continue Statement
13.Labeled Statements
14.For loop with alert dialog
15.Declare for loop counter
16.Control the loop step
17.Use for loop to fill an array
18.Use for in loop to go through an array