//Bonus - uncomment lines 15 and 17
const arrays = [["how", "now"], ["brown", "cow"]];
const flattenedArray = arrays.reduce((a,c) => a + c);
// The below line should console.log: ["how", "now", "brown", "cow"]
console.log(flattenedArray);
我是使用 reduce 函数的新手,它有点复杂。
我正在尝试扁平嵌套数组,但我真的不知道下一步该怎么做。
POPMUISE
狐的传说
相关分类