do-while, while, for and for-in loops in Javascript
By: Syed Fazal in Javascript Tutorials on 2008-08-16
Iterative statements, also called loop statements, specify certain commands to be executed repeatedly until some condition is met. The loops are often used to iterate the values of an array (hence the name) or to work though repetitious mathematical tasks. JavaScript provides four types of iterative statements to aid in the process.
do-while
The do-while statement is a post-test loop, meaning that the evaluation of the escape condition is only done after the code inside the loop has been executed. This means that the body of the loop is always executed at least once before the expression is evaluated. Syntax:
do {
statement
} while ( expression );
For example:
var i = 0;
do {
i += 2;
} while (i < 10);
It’s considered best coding practice to always use block statements, even if only one line of code is to be executed. Doing so can avoid confusion about what should be executed for each condition.
while
The while statement is a pretest loop. This means the evaluation of the escape condition is done before the code inside the loop has been executed. Because of this, it is possible that the body of the loop is never executed. Syntax:
while( expression ) statement
For example:
var i = 0;
while (i < 10) {
i += 2;
}
for
The for statement is also a pretest loop with the added capabilities of variable initialization before entering the loop and defining postloop code to be entered. Syntax:
for ( initialization ; expression ; post-loop-expression ) statement
For example:
for (var i=0; i < iCount; i++){
alert(i);
}
This code defines a variable i that begins with the value 0 . The for loop is entered only if the conditional expression ( i < iCount ) evaluates to true , making it possible that the body of the code might not be executed. If the body is executed, the postloop expression is also executed, iterating the variable i .
for-in
The for-in statement is a strict iterative statement. It is used to enumerate the properties of an object.
Syntax:
for ( property in expression ) statement
For example:
for (sProp in window) {
alert(sProp);
}
Here, the for-in statement is used to display all the properties of the BOM window object. The method propertyIsEnumerable() , discussed earlier, is included in JavaScript specifically to indicate whether or not a property can be accessed using the for-in statement.
Add Comment
This policy contains information about your privacy. By posting, you are declaring that you understand this policy:
- Your name, rating, website address, town, country, state and comment will be publicly displayed if entered.
- Aside from the data entered into these form fields, other stored data about your comment will include:
- Your IP address (not displayed)
- The time/date of your submission (displayed)
- Your email address will not be shared. It is collected for only two reasons:
- Administrative purposes, should a need to contact you arise.
- To inform you of new comments, should you subscribe to receive notifications.
- A cookie may be set on your computer. This is used to remember your inputs. It will expire by itself.
This policy is subject to change at any time and without notice.
These terms and conditions contain rules about posting comments. By submitting a comment, you are declaring that you agree with these rules:
- Although the administrator will attempt to moderate comments, it is impossible for every comment to have been moderated at any given time.
- You acknowledge that all comments express the views and opinions of the original author and not those of the administrator.
- You agree not to post any material which is knowingly false, obscene, hateful, threatening, harassing or invasive of a person's privacy.
- The administrator has the right to edit, move or remove any comment for any reason and without notice.
Failure to comply with these rules may result in being banned from submitting further comments.
These terms and conditions are subject to change at any time and without notice.
Comments