Control the loop step : For « Language Basics « JavaScript DHTML






Control the loop step

  

<html>
<head>
<title>A Simple Page</title>
<script language="JavaScript">
for (x = 10; x >= 0; x = x - 2)
{
    alert(x);
}
</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.Declare for loop counter
17.Use for loop to fill an array
18.Use for in loop to go through an array