js 扁平化输出数组
Posted jlyuan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js 扁平化输出数组相关的知识,希望对你有一定的参考价值。
1.使用数组的flat方法
[1,2,[3,[4,5]]].flat(Infinity) //[1, 2, 3, 4, 5]
2.实现方式二:
var arr = [[1, 2, 23], [13, 4, 5, 5], [6, 7, 9, [11, 12, [12, 13, [14]]]], 10]; var result = []; function flatFn(arr,res=[]) { arr.forEach(item => { if (Array.isArray(item)) { flatFn(item,res); } else { res.push(item) } }) return res; } result = flatFn(arr); console.log("result", result)
以上是关于js 扁平化输出数组的主要内容,如果未能解决你的问题,请参考以下文章