What is the simple definitions for kinds of loops? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

What is the simple definitions for kinds of loops?

10th Feb 2017, 3:24 PM
Rishabh Sharma
Rishabh Sharma - avatar
2 Answers
+ 2
--for: Used to iterate the same block a set number of times(2nd statement). Typically used to loop through all values of an array. --while: Iterates the same block as long as the parentheses statement returns true. Typically used to operate on the value of the statement that is being tested. --do...while: Same as while, but iterates the block at least once, even if the statement returns false. <EXAMPLES> var arr=[1,2,3]; for(i=0;i<arr.length-1;i++){ if(arr[i] === 3){ alert("I is 3"); }}//iterates 3 times, since arr.length-1 = 2(0,1,2) ----- var z=10; while(z !==5){ z--; }alert(z);//alerts 5 ----- var x= 5; do{ x--; } while (x>10) alert(x);//alerts 4
10th Feb 2017, 9:00 PM
Jayden Webb
+ 1
kind of repeat
10th Feb 2017, 4:07 PM
visph
visph - avatar