What are the methods used to implement loops in javascript
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.
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
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:'zhou',age:'**'} for(let i in obj){ console.log(i,obj[i]) } // name zhou // age **
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
and then the while loop method
cars=["BMW","Volvo","Saab","Ford"]; var i=0; while (cars[i]) { console.log(cars[i] + "<br>") i++; };
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
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
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]
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]
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
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
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
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
reduceRight() method has the same function as reduce(), it starts from the end of the array forward calculate.
12. for of loop
let arr = ['name','age']; for(let i of arr){ console.log(i) } // name // age
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!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

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

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics











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

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

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