The do...while Statement

The do-while statement is a post-test loop. The body of the loop is always executed at least once.

Here's the syntax:


do { 
    statement 
} while (expression);

And here's an example of its usage:

 
<!DOCTYPE html>
<html>
<head>
    <title>Example</title>
    <script type="text/javascript">
        var i = 0; 
        do { 
            i += 2; 
            document.writeln(i);
        } while (i < 10); 
        //2 4 6 8 10
    </script>
</head>
<body>
</body>
</html>
  
Click to view the demo
Home 
  JavaScript Book 
    Language Basics  

Statements:
  1. The if Statement
  2. The do...while Statement
  3. The while Statement
  4. The for Statement
  5. The for-in Statement
  6. Labeled Statements
  7. The break and continue Statements
  8. The with Statement
  9. The switch Statement