cycleforA loop is a command in any language that is used to execute a section of code repeatedly. For example, to loop a code block 5 times: for (let i = 0; i < 5; i++) { let text = `The current number is ${i}` console.log(text) }
In this example, let i = 0 declares the loop counter variable, i < 5 is the loop termination condition, i++ is the counter variable update step, and all the code within {} is the code block within the loop body. The specific process is: the counting variable performs the termination condition judgment operation. If the result is true, the loop body is executed, and after the end, the step length is updated to obtain a new result and participate in the judgment again; if the result is false, the loop is terminated immediately; Therefore, if you want to control the number of loops, you can usually change the judgment condition to achieve it. If the loop condition is always true, it is an infinite loop. for-inThe for-in loop is a special loop that can be used to loop over an object or an array (usually an array, using for-of). let o = { name: 'dapiaoliang', age: 18, sex: 'woman' } // Loop through all key-value pairs in the object. You can use for-in at this time. for (let key in o) { let text = `Current property name: ${key}, value: ${o[key]}` }
It can be seen that for-in is used to loop all the key-value pairs in the object. The specific output order may change, but each key-value pair will be looped once. for-offor-of is a loop command specifically used to loop arrays or array-like structures (Iterator interface) let arr = ["dapiaoliang", 18, 'woman'] for (let value of arr) { let text = `The current value is: ${value}` console.log(text) }
Similar to for-in, you can directly loop each item of the array whilewhile is a variation of for. (not commonly used) while (condition) { Loop Body} When the condition is true, the loop body will be executed. This loop has no count variable and does not need to update the step size. Therefore, the condition usually needs to be a variable parameter. If it is not a variable parameter, there needs to be a clear termination condition in the loop body. do-whiledo-while is a special while loop (not commonly used) do { Loop body}while(condition)
It seems that the while condition and loop body are swapped. Therefore, this loop body will be executed without judging the condition for the first time. After the execution is completed, the judgment will be made again, and the judgment result will determine whether it will loop next time.
Break out of the loopIf you need to jump out of the loop within the code block for some reason, you can use the corresponding keyword. break is used to permanently terminate this loop, and continue is used to terminate the current loop (enter the next one immediately) For example, skip i = 3 for (let i = 0; i < 5; i++) { if (i === 3) { continue } let text = `The current number is ${i}` console.log(text) } In the above example, when i=3, the loop body is judged as true and continue is executed. Then the next two lines of code will not be executed and the next loop will be entered immediately. for (let i = 0; i < 5; i++) { if (i === 3) { break } let text = `The current number is ${i}` console.log(text) }
At this time, it is judged that there is a break. Then when i=3, break is executed, and all subsequent loops will not be executed. Break will close the entire loop. SummarizeThis article ends here. I hope it can be helpful to you. I also hope you can pay more attention to more content on 123WORDPRESS.COM! You may also be interested in:
|
<<: CSS border adds four corners implementation code
>>: Appreciation of the low-key and elegant web design in black, white and gray
Alignment issues like type="radio" and t...
For record, it may be used in the future, and fri...
When installing Docker on Windows 10, after selec...
I recently watched Apple's press conference a...
The container has already been created, how to kn...
Table of contents Why do we need Docker? Docker d...
Adding/removing classes to elements is a very com...
Table of contents js calling method Android 1.js ...
Sometimes, in order to facilitate the export and ...
1. The role of index In general application syste...
Implement div wheel zooming in and out in Vue pro...
First, we will introduce how (1) MySQL 5.7 has a ...
introduce Monitors the health of HTTP servers in ...
tomcat official website tomcat is equivalent to a...
1. Installation Package MYSQL service download ad...