Detailed explanation of Javascript basics loop

Detailed explanation of Javascript basics loop

cycle

for

A 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)
}

// Output:
The current number is 0
The current number is 1
The current number is 2
The current number is 3
The current number is 4

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-in

The 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]}`
}

// Result (the output order of this loop may be different, but the number remains the same)
Current attribute name: name, value: dapiaoliang
Current attribute name: age, value: 18
Current attribute name: sex, value: woman

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-of

for-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)
}

// The current value of the result is: dapiaoliang
Current value is: 18
Current value: woman

Similar to for-in, you can directly loop each item of the array

while

while 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-while

do-while is a special while loop (not commonly used)

do {
  Loop body}while(condition)

The current number is 0
The current number is 1
The current number is 2
The current number is 4

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.

Therefore, the condition of do-while is to determine whether to loop next time, and the first time will always be executed, so it can be understood as a while loop that is executed at least once.

Break out of the loop

If 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)
}

The current number is 0
The current number is 1
The current number is 2

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.

Summarize

This 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:
  • How to use async and await correctly in JS loops
  • Four data type judgment methods in JS
  • About the difference between js typeof and instanceof in judging data types and their development and use
  • An example of elegant writing of judgment in JavaScript
  • How to convert a string into a number in JavaScript
  • parseInt parseFloat js string conversion number
  • JavaScript common statements loop, judgment, string to number

<<:  CSS border adds four corners implementation code

>>:  Appreciation of the low-key and elegant web design in black, white and gray

Recommend

Code for aligning form checkbox and radio text

Alignment issues like type="radio" and t...

Docker setting windows storage path operation

When installing Docker on Windows 10, after selec...

Docker file storage path, get container startup command operation

The container has already been created, how to kn...

How to deploy Go web applications using Docker

Table of contents Why do we need Docker? Docker d...

Several ways to use v-bind binding with Class and Style in Vue

Adding/removing classes to elements is a very com...

Learn the operating mechanism of jsBridge in one article

Table of contents js calling method Android 1.js ...

HeidiSQL tool to export and import MySQL data

Sometimes, in order to facilitate the export and ...

Tips and precautions for using MySQL index

1. The role of index In general application syste...

Vue implements div wheel zooming in and out

Implement div wheel zooming in and out in Vue pro...

A quick solution to the first login failure in mysql5.7.20

First, we will introduce how (1) MySQL 5.7 has a ...

Detailed explanation of Nginx passively checking the server's survival status

introduce Monitors the health of HTTP servers in ...

MySQL 5.5.27 winx64 installation and configuration method graphic tutorial

1. Installation Package MYSQL service download ad...