Welcome to Bucaro TecHelp!

Bucaro TecHelp
HTTPS Encryption not required because no account numbers or
personal information is ever requested or accepted by this site

About Bucaro TecHelp About BTH User Agreement User Agreement Privacy Policy Privacy Site Map Site Map Contact Bucaro TecHelp Contact RSS News Feeds News Feeds

The while Loop

A loop structure allows you execute a series of statements over and over. Several kinds of loop structures are available in Java Script, the while loop evaluates an expression, and while the expression evaluates to true, the while loop will repeatedly execute the series of statements. The syntax for the while loop is shown below.

while(condition)
{
   statements;
}

An example of a while loop is shown below.

var price = 10.00;

while(price > 5.00)
{
   price -= 1.00;
}

alert("The final price is: " + price);

The Condition expression inside the brackets is evaluated. The result of that evaluation can be true or false. If the result is true the statements inside the curly brackets will be executed. If the result is false, the loop terminates and program flow continues with the next statement following the while loop structure.

In the example above, the variable price is initialized to 10.00. The Condition expression inside the while brackets tests the value of price to see if it's greater than 5.00. If the value of price is greater than 5.00, the statements inside the curly brackets are executed; 1.00 is subtracted from price. The condition expression again tests the value of price.

After the statements inside the curly brackets are executed five times, the value of price is no longer greater than 5.00. The result of the condition expression evaluation becomes false, the while loop terminates.

program flow continues with the next statement following the while loop structure, which creates a message box displaying the final value of price (5.00).

More Java Script Code:
• Window Object Properties and Methods
• Java Script Reserved Words
• A Brief History of JavaScript
• Convert a String to a Number
• Cookie Power Made Easy
• The while Loop
• Java Script Trigonometric Methods
• JavaScript .big and .small to Change Text Size
• JavaScript Math Object
• Java Script Trigonometric Methods

RSS Feed RSS Feed

Follow Stephen Bucaro Follow @Stephen Bucaro


Fire HD
[Site User Agreement] [Privacy Policy] [Site map] [Search This Site] [Contact Form]
Copyright©2001-2024 Bucaro TecHelp 13771 N Fountain Hills Blvd Suite 114-248 Fountain Hills, AZ 85268