Declare for loop counter : For « Language Basics « JavaScript DHTML






Declare for loop counter

  

<HTML>
<HEAD>
<SCRIPT language="JavaScript">
for (count=1;count<16;count+=1)
{
  document.write(count+"<BR>");
}
</SCRIPT>
</HEAD>
<BODY>
</BODY>
</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.Plain for loop
15.For loop with alert dialog
16.Control the loop step
17.Use for loop to fill an array
18.Use for in loop to go through an array