Java Script / Java Script Looping Statements

It is a part of the program (sequence of instructions / part of code) which is repeated to perform a particular task till a certain condition is meets. It is used save time, reduce errors and make code more readable.

While Loop
It is used to repeat a Block / Lines of code to be executed till it meets a certain condition. But I this loop first checks the condition of the loop and then it enters into the code block. It the condition is false it comes out of the loop.

While Loop Syntax
while (condition)
{
// code block to be executed
}

Program Output
0 1 2 3 4


The Do/While Loop
It is used to repeat a Block / Lines of code to be executed till it meets a certain condition.

Do/While Loop Syntax

do
{ // Block / Lines of code to be executed
}
while (condition);

Program Output
0 1 2 3 4

For Loop
It is used to repeat a Block / Lines of code to be executed till it meets a certain condition. But in this loop first it enter into the code block and then increment / decrements the counters and thenchecks the condition of the loop till the condition is false it comes out of the loop.

For Loop Syntax
for (Initialization; Condition; Increment / Decrement)
{
// Block / Lines of code to be executed
}

Program Output
0 1 2 3 4


Home     Back