JavaScript While Loops

If you want to perform any operation again and again , we can use loop to run over same code.

or Whenever you want to perform operation on list of elements, then you need to loop through  .

There are 2 type of while loop:

  1. While Loop: check the condition, if true, run the block else exit

Example Code:

Output:

number is 0
number is 1
number is 2
number is 3
number is 4

2. Do While Loop: The do-while loop executes the loop body before checking the provided condition.

Syntax:

Example code:

Output:

number is 0
number is 1
number is 2
number is 3
number is 4

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top