01.数组扁平化 数组扁平化是指将一个多维数组变为一个一维数组 const arr = [1, [2, [3, [4, 5]]], 6]; // => [1, 2, 3, 4, 5, 6] 方法一:使用flat() const res1 = arr.flat(Infinity); 方法二:利用正则 const res2 = JSON.stringify(arr).replace(/\[|\]/g, '').split(','); 但数据类型都会变为字符串 方法三:正则改良版本 const res3 = JSON.parse('[' + JSON.string...