1. Detailed syntax of entires() method The index value of the array in the iteration object is used as 2. Common uses and precautions of the entires() method2.1 Returning an iterator objectvar arr = ["red", "blue", "green"] var x = arr.entries() console.log(x); // Array Iterator {} console.log(x.next()) //{value: Array:[0, "red"],done:false} console.log(x.next()) //{value: Array:[1, "blue"],done:false} console.log(x.next()) //{value: Array:[2, "green"],done:false} console.log(x.next()) //{value: undefined, done: true} 2.2 Use of for...of...const options = [1, , , , 5]; for (const [index, value] of options.entries()) { console.log(value); } // 0 1 // 1 undefined // 2 undefined // 3 undefined // 4 5 2.3 Sorting rows of a two-dimensional arrayfunction sortTwo(arr) { var entries = arr.entries() var flag = true while (flag) { var res = entries.next() if (!res.done) { res.value[1].sort((a, b) => a - b); flag = true } else { flag = false } } return arr } var arr = [[1, 3, 2], [44, 33], [11, 55, 44, 33]] sortTwo(arr) console.log(arr); // [[1, 2, 3], [33, 44], [11, 33, 44, 55]] In the above code, Summarize: This is the end of this article about js array entries() to get iteration method. For more related js array entries() to get iteration content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Docker container accesses the host's MySQL operation
>>: Web page custom selection box Select
Table of contents Workaround Why can't I moni...
1. DOCTYPE is indispensable. The browser determin...
When encapsulating the date picker, you need to d...
Today, when I was installing CentOS6.2, I couldn&...
There are many attributes in CSS. Some attributes...
Table of contents Overview 1. Function debounce 2...
1. Introduction A few days ago, I encountered a p...
The function I want to achieve is to open a new w...
Table of contents Preface 1. Tomcat class loader ...
Note: The basic directory path for software insta...
The large-screen digital scrolling effect comes f...
This example requires downloading and installing ...
This article mainly introduces the solution to th...
Recently, when I was learning Django, I needed to...
For work needs, I found a lot of information on t...