【js】Array.prototype.concat和Array.flat、Array.flatMap的关联使用
Array.prototype.concat:用于合并两个或多个数组,返回一个新数组,不改变原数组constarr1=[1,2,3]constarr2=[4,5,6]constarr3=[7,8,9]constresult=arr1.concat(arr2,arr3)//[1,2,3,4,5,6,7,8,9]拉平数组:如果有这样一个数据:[['one',1],['two',{a:[2]}],['t