我们有一个布尔数组的数组,像这样-
const arr = [[true,false,false],[false,false,false],[false,false,true]];
我们需要编写一个函数,通过使用OR(||)运算符组合每个子数组的相应元素,从而将该数组的数组合并为一维数组。
让我们为该函数编写代码。我们将使用Array.prototype.reduce()函数来实现此目的。
const arr = [[true,false,false],[false,false,false],[false,false,true]]; const orMerge = arr => { return arr.reduce((acc, val) => { val.forEach((bool, ind) => acc[ind] = acc[ind] || bool); return acc; }, []); }; console.log(orMerge(arr));
输出结果
控制台中的输出将为-
[ true, false, true ]