Summary
Keywords
Full Transcript
Loops can execute a block of code a number of times. Loops are handy, if you want to run the same code over and over again, each time with a different value. The ‘for‘ loop is the most compact form of looping. It includes the following three important parts − The loop initialization where we initialize our counter to a starting value. The initialization statement is executed before the loop begins. The test statement which will test if a given condition is true or not. If the condition is true, then the code given inside the loop will be executed, otherwise the control will come out of the loop. The iteration statement where you can increase or decrease your counter. For loop is primarily preferred when the number of iterations are well known in advanced. For Program code, info & more resources checkout this article - https://simplesnippets.tech/javascript-for-loop-control-statement/ Video by - Tanmay Sakpal Simple Snippets Channel link - https://www.youtube.com/simplesnippets
