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: Example Code: Output: number is 0number is 1number is 2number …