我们需要编写一个JavaScript函数,该函数接受Numbers数组。该函数应创建一个新数组,计算每个子数组的平均值,并将其推入新数组中的相应索引处。
假设以下是我们的数组-
const arr = [ [1], [2,3], [4,5,6,7] ];
为此的代码将是-
const arr = [ [1], [2,3], [4,5,6,7] ]; const average = (arr = []) => { const sum = arr.reduce((a, b) => a + b); return sum / arr.length; } const averageWithin = (arr = []) => { const res = arr.map(el => average(el)); return res; }; console.log(averageWithin(arr));
输出结果
控制台中的输出将是-
[ 1, 2.5, 5.5 ]