1. Concept of array flatteningArray flattening is the process of converting a multidimensional array into a one-dimensional array. [1, [2, 3, [4, 5]]] ------> [1, 2, 3, 4, 5] 2. Implementation1. reduce Traverse each item in the array, if the value is an array, traverse recursively, otherwise function flatten(arr) { return arr.reduce((result, item)=> { return result.concat(Array.isArray(item) ? flatten(item) : item); }, []); }
// Find the sum of the values in the array: arr.reduce((total, item)=> { // total is the previous calculation result, item is the value of each item in the array return total + item; }, 0); 2. toString & split Call the function flatten(arr) { return arr.toString().split(',').map(function(item) { return Number(item); }) } Because each item in the array formed after split is a string, a map method is needed to traverse the array and convert each item into a numeric type. 3. join & split Like function flatten(arr) { return arr.join(',').split(',').map(function(item) { return parseInt(item); }) } 4. Recursion Recursively traverse each item, if it is an array, continue traversing, otherwise function flatten(arr) { var res = []; arr.map(item => { if(Array.isArray(item)) { res = res.concat(flatten(item)); } else { res.push(item); } }); return res; } 5. Spread Operator [].concat(...[1, 2, 3, [4, 5]]); // [1, 2, 3, 4, 5] Based on this result, we can do a traversal. If function flatten(arr) { while(arr.some(item=>Array.isArray(item))) { arr = [].concat(...arr); } return arr; } Summarize: This concludes this article about 5 You may also be interested in:
|
<<: Detailed explanation of the solution to docker-compose being too slow
Table of contents background Effect Ideas backgro...
In HTML pages, visual elements such as buttons an...
1. Use of CSS scope (style division) In Vue, make...
(?i) means do not match case. Replace all uppercas...
Technical Background This application uses the vu...
When we use the MySQL service, under normal circu...
Effect picture (the border color is too light, pu...
I have recently been developing a visual operatio...
[LeetCode] 185. Department Top Three Salaries The...
The establishment of MySQL index is very importan...
Detailed tutorial on downloading and installing M...
1. CPU utilization sar -p (view all day) sar -u 1...
1Several common character sets In MySQL, the most...
1. The first method is to start the local tomcat ...
<html> <head> <meta http-equiv=&quo...