Array MethodsJavaScript has provided many array methods. The following figure covers most of the array methods. This article mainly talks about array traversal methods and their respective performance. With so many methods, how to choose the method with the best performance is of great help to our development. Array traversal methodsfor
var arr = [1,2,3,4,5] for(var i=0;i<arr.length;i++){ console.log(arr[i]) } The simplest traversal method is also the most frequently used, with good performance, but it can be optimized
var arr = [1,2,3,4,5] for(var i=0,len=arr.length;i<len;i++){ console.log(arr[i]) } Use temporary variables to cache the length to avoid repeatedly obtaining the array length. The optimization effect will be more obvious especially when the array length is large. This method is basically the most performant of all loop traversal methods. forEach
Runs a given function on each element in an array. It has no return value and is often used to traverse elements. var arr5 = [10,20,30] var result5 = arr5.forEach((item,index,arr)=>{ console.log(item) }) console.log(result5) /* 10 20 30 undefined This method has no return value*/ The foreach loop that comes with the array is used frequently, but its performance is actually weaker than the ordinary for loop.
Since foreach is a built-in function of the Array type, it cannot be used directly for some non-Array types (such as NodeList), so this variant is created. Using this variant can give similar arrays the foreach function. const nodes = document.querySelectorAll('div') Array.prototype.forEach.call(nodes,(item,index,arr)=>{ console.log(item) }) The actual performance is weaker than ordinary foreach for...inIterates over an object's enumerable properties other than Symbol in any order, including inherited enumerable properties. It is generally used to traverse objects, including names of non-integer types and inherited properties on the prototype chain can also be traversed. Objects created using built-in constructors like Array and Object will inherit the non-enumerable properties of Object.prototype and String.prototype and cannot be traversed. var arr = [1,2,3,4,5] for(var i in arr){ console.log(i,arr[i]) } //Here i is the object attribute, that is, the subscript of the array/** 0 1 1 2 twenty three 3 4 4 5 **/ Most people like to use this method, but its performance is not very good for...of (cannot traverse objects)Create an iteration loop on an iterable object (with iterator interface) (Array, Map, Set, String, arguments), call the custom iteration hook, and execute statements for each different attribute value. Do not traverse the object. let arr=["front end","南玖","ssss"]; for (let item of arr){ console.log(item) } //Front-end Nanjiu ssss //Traverse the object let person={name:"南玖",age:18,city:"上海"} for (let item of person){ console.log(item) } // We found that it is not possible. We can use it with Object.keys for(let item of Object.keys(person)){ console.log(person[item]) } // Nanjiu 18 Shanghai This method is used in es6, and its performance is better than forin, but still not as good as the ordinary for loop. mapmap: can only traverse the array without interruption, and the return value is the modified array. let arr = [1,2,3]; const res = arr.map(item=>{ return item+1 }) console.log(res) //[2,3,4] console.log(arr) // [1,2,3] everyRuns the given function on each item in the array. If the function returns true for every item, then the function returns true. var arr = [10,30,25,64,18,3,9] var result = arr.every((item,index,arr)=>{ return item>3 }) console.log(result) //false someRun the given function for each item in the array. If one of the items in the function returns true, it returns true. If all items return false, it returns false. var arr2 = [10,20,32,45,36,94,75] var result2 = arr2.some((item,index,arr)=>{ return item<10 }) console.log(result2) //false reduceThe reduce() method executes a reducer function you provide for each element in the array (in ascending order), summarizing the results into a single return value. const array = [1,2,3,4] const reducer = (accumulator, currentValue) => accumulator + currentValue; // 1 + 2 + 3 + 4 console.log(array1.reduce(reducer)); filterRunning a given function on each item in an array returns an array of items that satisfy the function. // filter returns a new array consisting of array items that meet the requirements var arr3 = [3,6,7,12,20,64,35] var result3 = arr3.filter((item,index,arr)=>{ return item > 3 }) console.log(result3) //[6,7,12,20,64,35] Performance testing tool testingThe results of the performance analysis using the tool test are shown in the figure belowManual TestingWe can also test the code ourselves: //Test function function clecTime(fn,fnName){ const start = new Date().getTime() if(fn) fn() const end = new Date().getTime() console.log(`${fnName} execution time: ${end-start}ms`) } function forfn(){ let a = [] for(var i=0;i<arr.length;i++){ // console.log(i) a.push(arr[i]) } } clecTime(forfn, 'for') //for execution time: 106ms function forlenfn(){ let a = [] for(var i=0,len=arr.length;i<len;i++){ a.push(arr[i]) } } clecTime(forlenfn, 'for len') //for len execution time: 95ms function forEachfn(){ let a = [] arr.forEach(item=>{ a.push[item] }) } clecTime(forEachfn, 'forEach') //forEach execution time: 201ms function forinfn(){ let a = [] for(var i in arr){ a.push(arr[i]) } } clecTime(forinfn, 'forin') //forin execution time: 2584ms (outrageous) function foroffn(){ let a = [] for(var i of arr){ a.push(i) } } clecTime(foroffn, 'forof') //forof execution time: 221ms // ...the rest can be tested by yourself Results AnalysisAfter tool and manual testing, the results are basically the same. The speed of array traversal methods is: the traditional for loop is the fastest, and for-in is the slowest.
Suggested usage of javascript native traversal methods:
Why is for...in slow? Because the for...in syntax is the first JavaScript statement capable of iterating over object keys, looping over object keys ({}) is different from looping over arrays ([]), and the engine does some extra work to keep track of which properties have been iterated over. Therefore, it is not recommended to use for...in to traverse the array The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: Nginx solves cross-domain issues and embeds third-party pages
>>: Use button trigger events to achieve background color flashing effect
MySQL sets up independent writing separation. If ...
This article shares the specific code of the appl...
Some time ago, I encountered the problem that the...
Abstract: Many companies, even most companies whos...
There are two main reasons why it is difficult to...
Table of contents 1. Modify the app.vue page 2. C...
Over a period of time, I found that many people d...
Sometimes, while working with files in the Linux ...
Mysql installation, configuration, and optimizati...
1. Introduction By enabling the slow query log, M...
I recently reviewed some CSS-related knowledge po...
Using the <img> element with the default sr...
Set the width of the body to the width of the wind...
WebService Remote Debugging In .NET, the remote d...
Table of contents 1. Component Registration 2. Us...