我们有一个像这样的数字数组-
const arr = [ [12, 56, 34, 88], [65, 66, 32, 98], [43, 87, 65, 43], [32, 98, 76, 83], [65, 89, 32, 54], ];
我们需要编写一个映射到该数组数组并返回一个包含每个子数组中最大(最大)元素的数组的函数。
因此,让我们为该函数编写代码-
const arr = [ [12, 56, 34, 88], [65, 66, 32, 98], [43, 87, 65, 43], [32, 98, 76, 83], [65, 89, 32, 54], ]; const findMax = arr => { return arr.map(sub => { const max = Math.max(...sub); return max; }); }; console.log(findMax(arr));
输出结果
控制台中的输出将为-
[ 88, 98, 87, 98, 89 ]