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.
This policy contains information about your privacy. By posting, you are declaring that you understand this policy:
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:
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.
Most Viewed Articles (in Javascript )
Dynamically modify the option set in Dynamics 365 forms
promise and .then() in JavaScript
reduce() and filter() in JavaScript
History and evolution of Javascript
Using parseInt() and parseFloat() in JavaScript to convert data types to Numbers
Show how many characters remaining in a html text box using javascript
Latest Articles (in Javascript)
© 2023 Java-samples.com
Tutorial Archive: Data Science React Native Android AJAX ASP.net C C++ C# Cocoa Cloud Computing EJB Errors Java Certification Interview iPhone Javascript JSF JSP Java Beans J2ME JDBC Linux Mac OS X MySQL Perl PHP Python Ruby SAP VB.net EJB Struts Trends WebServices XML Office 365 Hibernate
Latest Tutorials on: Data Science React Native Android AJAX ASP.net C Cocoa C++ C# EJB Errors Java Certification Interview iPhone Javascript JSF JSP Java Beans J2ME JDBC Linux Mac OS X MySQL Perl PHP Python Ruby SAP VB.net EJB Struts Cloud Computing WebServices XML Office 365 Hibernate