Organize a few methods, in case you forget them later and have to look through your notes again Let's talk about flattening multidimensional arrays first Method 1: flat()// For example, here is a multidimensional array let arr = [1, 1, 2, [4, 2, [1, 3, [4, 2, 1]], 5], 2, 5, 3] console.log(arr.flat(2)); // Specify the number of nested levels // Output [ 1, 1, 2, 4, 2, 1, 3, [ 4, 2, <1 empty item>, 1 ], 5, 2, 5, 3 ] console.log(arr.flat(Infinity)); // No matter how many levels of nesting there are, // Output: [ 1, 1, 2, 4, 2, 1, 3, 4, 2, 1, 5, 2, 5, 3 ] Method 2: Concatenate with empty strings and then split with split()Lazy writing // Still this array let arr = [1, 1, 2, [4, 2, [1, 3, [4, 2, 1]], 5], 2, 5, 3] // When characters are operated with other basic data types, they will all be converted into characters. Then call the split() method to split them with ',' console.log((arr + '').split(',')); // Output ['1', '1', '2', '4', '2', '1', '3', '4', '2', '1', '5', '2', '5', '3'] // The output is not very good, let's continue to optimize it // Still using this array let arr = [1, 1, 2, [4, 2, [1, 3, [4, 2, 1]], 5], 2, 5, 3] let newArr = (arr + '').split(',') let arr1 = [] newArr.forEach((items) => { arr1.push(+items) // '+items' convert data type}) console.log(arr1); // Output [ 1, 1, 2, 4, 2, 1, 3, 4, 2, 1, 5, 2, 5, 3 ] Method 3: toString()Since we can convert arrays into character types through calculations, using arr+' ' does not seem so elegant. At this time, I suddenly remembered that the js Number object has a toString() method. Definition and Usage let arr = [1, 1, 2, [4, 2, [1, 3, [4, 2, 1]], 5], 2, 5, 3] let newArr = arr.toString().split(',') let arr1 = [] newArr.forEach((items) => { arr1.push(+items) }) console.log(arr1); // Output ['1', '1', '2', '4', '2', '1', '3', '4', '2', '1', '5', '2', '5', '3'] Method 4: join() Definition and Usage By calling the join() method of an array, a string is returned. Each element in arr is converted to a string. Elements can be concatenated by passing a separator symbol. The default separator is comma. let arr = [1, 1, 2, [4, 2, [1, 3, [4, 2, 1]], 5], 2, 5, 3] let newArr = arr.join().split(',') console.log(newArr) // Output ['1', '1', '2', '4', '2', '1', '3', '4', '2', '1', '5', '2', '5', '3'] Method 5: Recursive call When talking about recursion, we have to mention, what is recursion? definition: The recursion probably looks like this: function a() { if (a <= 1) { return 1 } else { return a * fn(a - 1) } } Flatten a multidimensional array: let arr = [1, 1, 2, [4, 2, [1, 3, [4, 2, 1]], 5], 2, 5, 3] let newArr = [] let fn = (arr) => { for (let i = 0; i < arr.length; i++) { // Determine if the traversed value is still an array and continue traversing if (Array.isArray(arr[i])) { // Use array Array.isArray() to determine whether the passed value is an Array fn(arr[i]) // If the traversed value is not an array, push it into the new array newArr} else { newArr.push(arr[i]) } } } fn(arr) console.log(newArr); Method 6: Using reduceThis method must be learned and will be used frequently in Vue later. reduce initialValue: You can manually assign an initial value. Return value: The return value in the current loop can be used as the initialization for the next loop. const arr = [1, 1, 2, [4, 2, [1, 3, [4, 2, 1]], 5], 2, 5, 3] const fn = (array) => { return array.reduce((prev, curr) => { // Check if curr is an array return prev.concat(Array.isArray(curr) ? fn(curr) : curr) }, []) } console.log(fn(arr)) Array deduplication Method 1: Create a new array and check whether the element exists in the new array. If not, add the element to the new array.const arr = [1, 1, 2, 4, 2, 1, 3, 4, 2, 1, 5, 2, 5, 3] const fn = (arr) => { const newArr = [] for (let i = 0; i < arr.length; i++) { if (newArr.indexOf(arr[i]) == -1) { newArr.push(arr[i]) } } return newArr } console.log(fn(arr)); Method 2: Use the Set methodconst arr = [1, 1, 2, 4, 2, 1, 3, 4, 2, 1, 5, 2, 5, 3] // Using the Set data structure provided by ES6, the new Set members are unique, and then the data is expanded and stored in the array const newArr = [...new Set(arr)] console.log(newArr); // Alternatively, you can use the Array.from() method to convert an array-like object or a traversable object into a real array. const newArr = Array.from(new Set(arr)) console.log(newArr); Method 3: Using filter()const arr = [1, 1, 2, 4, 2, 1, 3, 4, 2, 1, 5, 2, 5, 3] const newArr = arr.filter((value, index, array) => { // Pass three parameters, value, index, and original array, return array.indexOf(value) == index // indexOf always returns the index of the first value. The index of the subsequent duplicate values is not equal to the position returned by indexOf and will be filtered out by filter}) console.log(newArr); Sorting an Array Method 1: Using sort() Definition and Usage grammar Return value A reference to the array. Note that the array is sorted on the original array and no copies are made. Description If this method is called without parameters, the elements in the array will be sorted in alphabetical order, or more precisely, in the order of character encodings. To do this, first convert the array elements to strings (if necessary) so that they can be compared. If a is less than b, a should appear before b in the sorted array, and a value less than 0 is returned.
const arr = [1, 23, 1, 1, 1, 3, 23, 5, 6, 7, 9, 9, 8, 5, 5, 5]; const fn = (a, b) => { return a - b // b - a in reverse order} console.log(arr.sort(fn)); This is the end of this article about how to convert a multidimensional array into a one-dimensional array and then remove the reordering in js. For more related content about how to convert a multidimensional array into a one-dimensional array and remove the reordering in js, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Complete steps to set up automatic updates in CentOS 8
>>: Tutorial on installing mysql under centos7
Table of contents MySQL query tree structure 1. A...
<br />In the previous article, I introduced ...
Table of contents 1. Use the "rpm -ivh insta...
This article compares and summarizes four ways of...
Table of contents 1. typeof 2. instanceof 3. Diff...
Preface When a Linux is fully set up, you can use...
Select and change: click to display the current v...
This article example shares the specific code of ...
Table of contents Transaction Isolation Level Pro...
OOM stands for "Out Of Memory", which m...
Preface After reading the previous article about ...
To beautify the table, you can set different bord...
Linux uses iftop to monitor the traffic of the ne...
1. Docker Network Mode When docker run creates a ...
Problem Description In the recent background serv...