TA贡献1825条经验 获得超4个赞
function mergeArr(arr1, arr2) { let arr = arr1.slice(0) arr2.forEach((item, index) => { arr.splice(2 * (index + 1) - 1, 0, item) }) return arr }
TA贡献1775条经验 获得超11个赞
array_intersect()
系统有现成的,就不要自己写了
举报