const arr = [0, 1, 2,2,3,4,[1,2,3,[4,5,6,7,9]],4,7];
方式一
const newArr = arr.flat(Infinity);
方式二
const newArr2 = arr.toString().split(',');
方式三
const newArr3 = JSON.stringify(arr).replace(/(\[|\])/g,'');
const arr = [0, 1, 2,2,3,4,[1,2,3,[4,5,6,7,9]],4,7];
方式一
const newArr = arr.flat(Infinity);
方式二
const newArr2 = arr.toString().split(',');
方式三
const newArr3 = JSON.stringify(arr).replace(/(\[|\])/g,'');