For loop for lines : For « Language Basics « JavaScript DHTML






For loop for lines

  
<html>
<head>
<script language="JavaScript">
<!--
function testLoop() {
  var String1 = '<hr align="center" width=';
  document.open();
  for (var size = 5; size <= 100; size+=5)
      document.writeln(String1 + size + '%">');
  document.close();
}
//-->
</script>
</head>
<body>
<form>
<input type="button" value="Test the loop" onClick="testLoop()">
</form>
</body>
</html>


           
         
    
  








Related examples in the same category

1.Check the loop counter
2. Drawing a Christmas Tree Using Nested For Loops
3.For loop
4.Using a for..in Loop in JavaScript
5.A Demonstration of a Nested Loop
6.A for Loop Used to Count from 0 to 99
7.Using the label Statement
8.Using the continue and break Statements
9.Use of the for Statement
10.The break Statement
11.The continue Statement
12.Labeled Statements
13.Plain for loop
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