Advertisements
Advertisements
Question
Explain for loop with example.
Long Answer
Solution
The for loop is a very rigid structure that loops for a pre-set number of times. In JavaScript for structure is very flexible, which makes this type is very useful.
for (initialization; condition; increment/decrement)
{
Body of the loop;
}
The for structure within parenthesis there are three parts each separated by a semicolon. They are,
- The first part of the loop initialize a variable which is also called a control variable. In most case, the control variable is declared as well as initialized.
- The second part is the conditional statement that determines how many times the loop will be iterated.
- The third and final part determines how the value of control variable is changed (Incremented/Decremented).
Example:
HTML CODE
<Html>
<Head>
<Title> Program - To test for statement in JavaScript </Title>
</Head>
<Body>
<script language="javascript" type="text/javascript">
var no1 = prompt("Please enter Table You want :", "0");
document.write("<h2> Multiplication for your need </h2>");
for( var no2=0;no2<=10;no2++)
{
document.write(no1+" x "+no2+" = "+no1*no2+"<br>");
}
</script>
</Body>
</Html>
OUTPUT:
shaalaa.com
Looping / Repetitive
Is there an error in this question or solution?
APPEARS IN
RELATED QUESTIONS
Which of the following is not a looping statement?
Which part of the loop statement determines the number of times, the loop will be iterated?
In the _____ loop, body of the loop always executed at least once before the condition can be executed.
What is called a loop and what are its types?
Differentiate between while and do while statements.
Write a Java Script program using while statement to display 10 numbers.