-
-
Notifications
You must be signed in to change notification settings - Fork 3.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[js] 第119天 写一个方法把多维数组降维 #1059
Labels
js
JavaScript
Comments
const arr = [1, 2, [3, 4, [5, 6]]]
arr.flat(Infinity)
// [1, 2, 3, 4, 5, 6] |
抄MDN上的,会把空项过滤。 |
function handlerArr(arr, _rst) {
const rst = _rst || [];
arr.forEach(ele => {
typeof ele === 'object' ? handlerArr(ele, rst) : rst.push(ele);
});
return rst;
} |
|
|
function flatten(arr, depth = 1) {
if (!depth || !Array.isArray(arr)) return arr
return arr.reduce((prev, mem) =>
prev.concat(flatten(mem, depth - 1)), [])
} 怎么感觉和搬mdn的那位这么像...但是这个支持指定深度。 |
const flatArr = (arr, deep = false) =>
arr.reduce((prev, cur) => {
if (deep && Array.isArray(cur)) {
return prev.concat(flatArr(cur, deep));
} else {
return prev.concat(cur);
}
}, []);
const arr = [1, [2, [3, [4, [5], 6], 7], 8], 9];
const arr2 = [{}, [{}, {}, {}, [2, 3, 4, [5, 6, 7, [{}, {}]]]]];
console.log(flatArr(arr, true)); |
const flatArr = (arr) => Array.isArray(arr)
? arr.reduce( (a, b) => [...a, ...flatArr(b)] , [])
: [arr]
flatArr([1, [[2], [3, [4]], 5]]) |
const flatArray = arr => arr.flat(Infinity); |
const arr = [2,3,[4,5,6],[7,9,0],10,[344,666,[888,999]]] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
第119天 写一个方法把多维数组降维
The text was updated successfully, but these errors were encountered: