Home Web Front-end Front-end Q&A What are the methods used to implement loops in javascript

What are the methods used to implement loops in javascript

Jan 26, 2022 am 11:26 AM
javascript cycle

Methods to implement loops: 1. for loop statement; 2. "for in" loop statement; 3. while loop statement; 4. "do while" loop statement; 5. forEach() method; 6. map() method; 7. filter() method; 8. some(); 9. every() and so on.

What are the methods used to implement loops in javascript

The operating environment of this tutorial: windows7 system, javascript version 1.8.5, Dell G3 computer.

12 loop traversal methods in JavaScript

1. for loop

let arr = [1,2,3];
for (let i=0; i<arr.length; i++){
 console.log(i,arr[i])
}
// 0 1
// 1 2
// 2 3
Copy after login

The for loop is the most commonly used loop tool in Js and is often used for loop traversal of arrays.

2. for in loop

let obj = {name:&#39;zhou&#39;,age:&#39;**&#39;}
for(let i in obj){
 console.log(i,obj[i])
}
// name zhou
// age **
Copy after login

The for in loop is mainly used to traverse ordinary objects. i represents the key value of the object, and obj[i] represents the corresponding value. When using it to iterate over an array, the same effect can be achieved in most cases, but you should not do this. This is risky, because i is output in string form, not the numeric subscript required by the array, which means In some cases, string operations will occur, resulting in data errors, such as: '52' 1 = '521' instead of the 53 we need.

In addition, when the for in loop not only traverses its own properties, it will also find the prototype, so it is best to add a judgment in the loop body, just use obj[i].hasOwnProperty(i), so as to avoid Too many unnecessary attributes are traversed.

3. While loop

Similarly traverse the cars array, first use the for loop method

let cars=["BMW","Volvo","Saab","Ford"];
let i=0;
for (;cars[i];)
{
console.log(cars[i])
i++;
};
// BMW
// Volvo
// Saab
// Ford
Copy after login

and then the while loop method

cars=["BMW","Volvo","Saab","Ford"];
var i=0;
while (cars[i])
{
console.log(cars[i] + "<br>")
i++;
};
Copy after login

We found that they can achieve the same effect. In fact, their underlying processing is the same. However, the for loop can put the definition, conditional judgment, and autoincrement and decrement operations into one condition for execution. The code looks more convenient. That's all.

4. do while loop

let i = 3;
do{
 console.log(i)
 i--;
}
while(i>0)
// 3
// 2
// 1
Copy after login

The do while loop is a variant of the while loop. It first performs an operation and then performs a conditional judgment. If it is true Continue to perform the operation. If it is false, the loop ends.

5. Array forEach loop

let arr = [1,2,3];
arr.forEach(function(i,index){
 console.log(i,index)
})
// 1 0
// 2 1
// 3 2
Copy after login

forEach loop, loops through each element in the array and takes operations. There is no return value. You don’t need to know the length of the array. It has three Parameters, only the first one is required, represents the value under the current index.

Also please note that the forEach loop cannot be stopped before all elements are called. It does not have a break statement. If you must stop, you can try a try catch statement, which is when you want to force exit. , throw an error to catch, and then return in catch, so that the loop can be terminated. If you often use this method, it is best to customize such a forEach function in your library.

6. Array map() method

let arr = [1,2,3];
let tt = arr.map(function(i){
 console.log(i)
 return i*2;
})
// [2,4,6]
Copy after login

map() method returns a new array, and the elements in the array are the values ​​of the original array elements after calling the function.
Note: The map and forEach methods can only be used to traverse arrays, not ordinary objects.

7. Array filter() method

let arr = [1,2,3];
let tt = arr.filter(function(i){
 return i>1;
})
// [2,3]
Copy after login

The filter method is a built-in method of the Array object. It will return the filtered elements without changing the original array.

8. Array some() method

let arr = [1,2,3];
let tt = arr.some(function(i){
 return i>1;
})
// true
Copy after login

some() method is used to detect whether the elements in the array meet the specified conditions (provided by the function) and return a boolean value. The original array is not changed.

9. Array every() method

let arr = [1,2,3];
let tt = arr.some(function(i){
 return i>1;
})
// 检测数组中元素是否都大于1
// false
Copy after login

every() method is used to detect whether all elements of the array meet the specified conditions (provided through the function) and return a boolean value , does not change the original array.

10. Array reduce() method

let arr = [1,2,3];
let ad = arr.reduce(function(i,j){
 return i+j;
})
// 6
Copy after login

reduce() method receives a function as an accumulator, starting with each value in the array (from left to right) Reduced and finally computed to a value.

11. Array reduceRight() method

let arr = [1,2,3];
let ad = arr.reduceRight(function(i,j){
 return i+j;
})
// 6
Copy after login

reduceRight() method has the same function as reduce(), it starts from the end of the array forward calculate.

12. for of loop

let arr = [&#39;name&#39;,&#39;age&#39;];
for(let i of arr){
 console.log(i)
}
// name
// age
Copy after login

The for of loop is a new statement in Es6, used to replace for in and forEach. It allows you to traverse Arrays (array ), Strings (strings), Maps (mappings), Sets (sets) and other iterable (Iterable data) data structures, pay attention to its compatibility.

[Related recommendations: javascript learning tutorial]

The above is the detailed content of What are the methods used to implement loops in javascript. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

Java Tutorial
1660
14
PHP Tutorial
1261
29
C# Tutorial
1234
24
How to implement an online speech recognition system using WebSocket and JavaScript How to implement an online speech recognition system using WebSocket and JavaScript Dec 17, 2023 pm 02:54 PM

How to use WebSocket and JavaScript to implement an online speech recognition system Introduction: With the continuous development of technology, speech recognition technology has become an important part of the field of artificial intelligence. The online speech recognition system based on WebSocket and JavaScript has the characteristics of low latency, real-time and cross-platform, and has become a widely used solution. This article will introduce how to use WebSocket and JavaScript to implement an online speech recognition system.

WebSocket and JavaScript: key technologies for implementing real-time monitoring systems WebSocket and JavaScript: key technologies for implementing real-time monitoring systems Dec 17, 2023 pm 05:30 PM

WebSocket and JavaScript: Key technologies for realizing real-time monitoring systems Introduction: With the rapid development of Internet technology, real-time monitoring systems have been widely used in various fields. One of the key technologies to achieve real-time monitoring is the combination of WebSocket and JavaScript. This article will introduce the application of WebSocket and JavaScript in real-time monitoring systems, give code examples, and explain their implementation principles in detail. 1. WebSocket technology

How to use JavaScript and WebSocket to implement a real-time online ordering system How to use JavaScript and WebSocket to implement a real-time online ordering system Dec 17, 2023 pm 12:09 PM

Introduction to how to use JavaScript and WebSocket to implement a real-time online ordering system: With the popularity of the Internet and the advancement of technology, more and more restaurants have begun to provide online ordering services. In order to implement a real-time online ordering system, we can use JavaScript and WebSocket technology. WebSocket is a full-duplex communication protocol based on the TCP protocol, which can realize real-time two-way communication between the client and the server. In the real-time online ordering system, when the user selects dishes and places an order

How to implement an online reservation system using WebSocket and JavaScript How to implement an online reservation system using WebSocket and JavaScript Dec 17, 2023 am 09:39 AM

How to use WebSocket and JavaScript to implement an online reservation system. In today's digital era, more and more businesses and services need to provide online reservation functions. It is crucial to implement an efficient and real-time online reservation system. This article will introduce how to use WebSocket and JavaScript to implement an online reservation system, and provide specific code examples. 1. What is WebSocket? WebSocket is a full-duplex method on a single TCP connection.

JavaScript and WebSocket: Building an efficient real-time weather forecasting system JavaScript and WebSocket: Building an efficient real-time weather forecasting system Dec 17, 2023 pm 05:13 PM

JavaScript and WebSocket: Building an efficient real-time weather forecast system Introduction: Today, the accuracy of weather forecasts is of great significance to daily life and decision-making. As technology develops, we can provide more accurate and reliable weather forecasts by obtaining weather data in real time. In this article, we will learn how to use JavaScript and WebSocket technology to build an efficient real-time weather forecast system. This article will demonstrate the implementation process through specific code examples. We

Simple JavaScript Tutorial: How to Get HTTP Status Code Simple JavaScript Tutorial: How to Get HTTP Status Code Jan 05, 2024 pm 06:08 PM

JavaScript tutorial: How to get HTTP status code, specific code examples are required. Preface: In web development, data interaction with the server is often involved. When communicating with the server, we often need to obtain the returned HTTP status code to determine whether the operation is successful, and perform corresponding processing based on different status codes. This article will teach you how to use JavaScript to obtain HTTP status codes and provide some practical code examples. Using XMLHttpRequest

Lambda expression breaks out of loop Lambda expression breaks out of loop Feb 20, 2024 am 08:47 AM

Lambda expression breaks out of the loop, specific code examples are needed. In programming, the loop structure is an important syntax that is often used. However, in certain circumstances, we may want to break out of the entire loop when a certain condition is met within the loop body, rather than just terminating the current loop iteration. At this time, the characteristics of lambda expressions can help us achieve the goal of jumping out of the loop. Lambda expression is a way to declare an anonymous function, which can define simple function logic internally. It is different from an ordinary function declaration,

JavaScript and WebSocket: Building an efficient real-time image processing system JavaScript and WebSocket: Building an efficient real-time image processing system Dec 17, 2023 am 08:41 AM

JavaScript is a programming language widely used in web development, while WebSocket is a network protocol used for real-time communication. Combining the powerful functions of the two, we can create an efficient real-time image processing system. This article will introduce how to implement this system using JavaScript and WebSocket, and provide specific code examples. First, we need to clarify the requirements and goals of the real-time image processing system. Suppose we have a camera device that can collect real-time image data

See all articles