6.3 Loops


6.3 Loops

Loops are used to execute a segment of code repeatedly until some condition is met. JavaScript's basic looping constructs are

  • while

  • for

  • do/while

6.3.1 The while Loop

The while statement executes its statement block as long as the expression after the while evaluates to true; that is, non-null, non-zero , non-false. If the condition never changes and is true, the loop will iterate forever (infinite loop). If the condition is false control goes to the statement right after the closing curly brace of the loop's statement block.

The break and continue functions are used for loop control.

FORMAT

 
 while (condition) {     statements;     increment/decrement counter; } 
Example 6.4
 <html>     <head>     <title>Looping Constructs</title>     </head>     <body>     <h2>While Loop</h2> 1   <script language="JavaScript">         document.write("<font size='+2'>"); 2       var i=0;    //  Initialize loop counter  3  while ( i < 10 ){  //  Test  4  document.writeln(i);  5  i++;  //  Increment the counter  6  }  //  End of loop block  7   </script>     </body>     </html> 

EXPLANATION

  1. The JavaScript program starts here.

  2. The variable i is initialized to .

  3. The expression after the while is tested . If i is less than 10 , the block in curly braces is entered and its statements are executed. If the expression evaluates to false, (i.e., i is not less than 10 ), the loop block exits and control goes to line 6.

  4. The value of i i s displayed in the browser window. (See Figure 6.5.)

    Figure 6.5. Output from Example 6.4.

    graphics/06fig05.jpg

  5. The value of i is incremented by 1. If this value never changes, the loop will never end.

  6. This curly brace marks the end of the while loop's block of statements.

  7. The JavaScript program ends here.

6.3.2 The do/while Loop

The do/while statement executes a block of statements repeatedly until a condition becomes false. Owing to its structure, this loop necessarily executes the statements in the body of the loop at least once before testing its expression, which is found at the bottom of the block. The do/while loop is supported in Netscape Navigator and Internet Explorer 4.0, JavaScript 1.2, and ECMAScript v3.

FORMAT

 
 do     { statements;} while (condition); 
Example 6.5
 <html>     <head>     <title>Looping Constructs</title>     </head>     <body>     <h2>Do While Loop</h2>     <script language="JavaScript">         document.write("<font size='+2'>"); 1  var i=0;  2  do{  3  document.writeln(i);  4  i++;  5  } while ( i < 10 )  </script>     </body>     </html> 

EXPLANATION

  1. The variable i is initialized to .

  2. The do block is entered. This block of statements will be executed before the while expression is tested. Even if the while expression proves to be false, this block will be executed the first time around.

  3. The value of i is displayed in the browser window. (See Figure 6.6.)

    Figure 6.6. Output from Example 6.5.

    graphics/06fig06.jpg

  4. The value of i is incremented by 1.

  5. Now, the while expression is tested to see if it evaluates to true (i.e., is i less than 10 ?). If so, control goes back to line 2 and the block is re-entered.

6.3.3 The for Loop

The for loop consists of the for keyword followed by three expressions separated by semicolons and enclosed within parentheses. Any or all of the expressions can be omitted, but the two semicolons cannot. The first expression is used to set the initial value of variables and is executed just once, the second expression is used to test whether the loop should continue or stop, and the third expression updates the loop variables ; that is, it increments or decrements a counter, which will usually determine how many times the loop is repeated.

FORMAT

 
 for(Expression1;Expression2;Expression3)     {statement(s);} for (initialize; test; increment/decrement)     {statement(s);} 

The above format is equivalent to the following while statement:

 
 Expression1; while( Expression2 )     { Block; Expression3}; 
Example 6.6
 <html>     <head>     <title>Looping Constructs</title>     </head>     <body>     <h2>For Loop</h2>     <script language="JavaScript">         document.write("<font size='+2'>"); 1  for( var i = 0; i < 10; i++ ){  2  document.writeln(i);  3       }     </script>     </body>     </html> 

EXPLANATION

  1. The for loop is entered. The expression starts with step 1, the initialization of the variable i to . This is the only time this step is executed. The second expression, step 2, tests to see if i is less than 10 , and if it is, the statements after the opening curly brace are executed. When all statements in the block have been executed and the closing curly brace is reached, control goes back into the for expression to the last expression of the three. i is now incremented by one and the expression in step 2 is retested. If true, the block of statements is entered and executed.

  2. The value of i is displayed in the browser window. (See Figure 6.7.)

    Figure 6.7. Output from Example 6.6.

    graphics/06fig07.jpg

  3. The closing curly brace marks the end of the for loop.

6.3.4 The for/in Loop

The for/in loop is like the for loop, except it is used with JavaScript objects. Instead of iterating the statements based on a looping condition, it operates on the properties of an object. This loop is discussed in Chapter 9, "JavaScript Core Objects," and is only mentioned here in passing, because it falls into the category of looping constructs.

6.3.5 Loop Control with break and continue

The control statements, break and continue , are used to either break out of a loop early or return to the testing condition early; that is, before reaching the closing curly brace of the block following the looping construct.

Table 6.1. Control statements.

Statement

What It Does

break

Exits the loop to the next statement after the closing curly brace of the loop's statement block.

continue

Sends loop control directly to the top of the loop and re-evaluates the loop condition. If the condition is true, enters the loop block.

Example 6.7
 <html>     <head>     <title>Looping Constructs</title>     </head>     <body>     <h2>While Loop</h2> 1   <script language="JavaScript">         document.write("<font size='+2'>"); 2       while(true) { 3           var grade=eval(prompt("What was your grade? ","")); 4           if (grade < 0  grade > 100) {                document.write("Illegal choice<br>"); 5  continue;  //  Go back to the top of the loop  } 6           if(grade > 89 && grade < 101) {document.write("A<br>");} 7              else if (grade > 79 && grade < 90)                        {document.write("B<br>");}                else if (grade > 69 && grade < 80)                        {document.write("C<br>");}                else if (grade > 59 && grade < 70)                        {document.write("D<br>");} 8              else {document.write("You Failed.<br>");} 9           answer=prompt("Do you want to enter another grade? ",""); 10          if(answer != "yes"){ 11  break;  //  Break out of the loop to line 12  } 12          document.write("So long.<br>");     </script>     </body>     </html> 

EXPLANATION

1 The JavaScript program starts here.

2 The while loop is entered. The loop expression will always evaluate to true, causing the body of the loop to be entered.

3 The user is prompted for a grade, which is assigned to the variable grade .

4 If the variable grade is less than 0 or more than 100, " Illegal choice " is printed.

5 The continue statement sends control back to line 2 and the loop is re-entered, prompting the user again for his grade.

6 If a valid grade was entered, and it is greater than 89 and less than 101, the grade " A " is displayed.

7 Each else/if branch will be evaluated until one of them is true.

8 If none of the expressions are true, the else condition is reached and " You Failed " is displayed.

9 The user is prompted to see if he wants to enter another grade.

10, 11 If his answer is not yes , the break statement takes him out of the loop, to line 12.

6.3.6 Nested Loops and Labels

Nested Loops

A loop within a loop is a nested loop. A common use for nested loops is to display data in rows and columns. One loop handles the rows and the other handles the columns . The outside loop is initialized and tested, the inside loop then iterates completely through all of its cycles, and the outside loop starts again where it left off. The inside loop moves faster than the outside loop. Loops can be nested as deeply as you wish, but there are times when it is necessary to terminate the loop owing to some condition.

Example 6.8
 <html>     <head>     <title>Nested loops</title>     </head>     <body>     <script language=javascript>         <!--  Hiding JavaScript from old browsers 1       var str = "@"; 2  for ( var row = 0; row < 6; row++){  3  for ( var col=0; col < row; col++){  document.write(str);            } 4          document.write("<br>");         }         //-->     </script>     </body>     </html> 

EXPLANATION

  1. The variable str is assigned a string "@" .

  2. The outer for loop is entered. The variable row is initialized to . If the value of row is less than 6 , the loop block (in curly braces) is entered (i.e., go to line 3).

  3. The inner for loop is entered. The variable col is initialized to . If the value of col is less than the value of row , the loop block is entered and an @ is displayed in the browser. Next, the value of col will be incremented by 1, tested, and if still less than the value of row , the loop block is entered, and another @ displayed. When this loop has completed, a row of @ symbols will be displayed, and the statements in the outer loop will start up again.

  4. When the inner loop has completed looping, this line is executed producing a break in the rows. (See Figure 6.8.)

    Figure 6.8. Nested loops: rows and columns. Output from Example 6.8.

    graphics/06fig08.jpg

Labels.

Labels are identifiers followed by a colon and placed on a line by themselves. They can be named the same as any other legal identifier that is not a reserved word. They are used if you want to branch to some other part of the program. By themselves , labels do nothing. You name labels as you would name any other identifier. Labels are optional, but can be used to control the flow of a loop. A label looks like this, for example:

 
 Top: 

Normally, if you use loop-control statements such as break and continue , the control is directed to the innermost loop. There are times when it might be necessary to switch control to some outer loop. This is where labels most often come into play. By prefixing a loop with a label, you can control the flow of the program with break and continue statements as shown in Example 6.9. Labeling a loop is like giving the loop its own name.


Example 6.9.

graphics/06inf02.gif


EXPLANATION

  1. The label outer: is on a line by itself. It labels the while loop.

  2. Here is another label called middle: . It will label the while loop below it.

  3. If the expression is true, the break statement, with the label, causes control to go to line 6; it breaks out of the outer: loop.

  4. This label applies to the for loop below it.

  5. If the expression is true, the continue statement causes control to go back to line 1, the outer: loop.



JavaScript by Example
JavaScript by Example (2nd Edition)
ISBN: 0137054890
EAN: 2147483647
Year: 2003
Pages: 150
Authors: Ellie Quigley

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net