Posted in Javascript onSeptember 17, 2019
这篇文章主要介绍了JS扁平化输出数组的2种方法解析,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
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扁平化输出数组的2种方法解析
- Author -
jlyuan声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@