0% found this document useful (0 votes)
13 views2 pages

14-For Loop

JavaScript has two types of loops: for loops and while loops. The for loop is used when the number of iterations is known and allows you to define the initialization, condition, and increment of the counter variable. An example for loop iterates from 0 to 5, outputting the number on each line. The while loop, which will be covered next, runs a block of code as long as a condition remains true.

Uploaded by

BaneeIshaqueK
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
13 views2 pages

14-For Loop

JavaScript has two types of loops: for loops and while loops. The for loop is used when the number of iterations is known and allows you to define the initialization, condition, and increment of the counter variable. An example for loop iterates from 0 to 5, outputting the number on each line. The while loop, which will be covered next, runs a block of code as long as a condition remains true.

Uploaded by

BaneeIshaqueK
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
You are on page 1/ 2

JavaScript For Loop

Loops execute a block of code a specified number of times, or while a specified


condition is true.
JavaScript Loops
Often when you write code, you want the same block of code to run over and over again in a row.
nstead of adding several almost e!ual lines in a script we can use loops to perform a task like this.
n JavaScript, there are two different kind of loops"
for # loops through a block of code a specified number of times
while # loops through a block of code while a specified condition is true
$he for Loop
$he for loop is used when you know in advance how many times the script should run.
Syntax
for (var=startvalue;var<=endvalue;var=var+increment)
{
code to be executed
}
Example
$he example below defines a loop that starts with i%&. $he loop will continue to run as long as i is
less than, or e!ual to '. i will increase by ( each time the loop runs.
Note: $he increment parameter could also be negative, and the )% could be any comparing
statement.
*xample
<html>
<body>
<script type="text!avascript">
var i=";
for (i=";i<=#;i++)
{
document$%rite("&he number is " + i);
document$%rite("<br >");
}
<script>
<body>
<html>
$he while loop
$he while loop will be explained in the next chapter.

You might also like