多维数组展开

多维数组展开

标签: arr


正文

let a=[1,[1,3],4];
let b=[].concat(...a);
console.log(b)
//1,1,3,4

你可能感兴趣的:(多维数组展开)