用箭头函数写100以内被3整除的数的和数已经平均数
时间: 2024-05-02 12:22:44 浏览: 66
Sure, 让我来回答你的第一个问题!使用箭头函数计算100以内被3整除的数的和和平均数可以这样写:
```javascript
const numbers = Array.from({ length: 100 }, (_, i) => i + 1);
const divisibleByThree = numbers.filter(n => n % 3 === 0);
const sum = divisibleByThree.reduce((acc, val) => acc + val, 0);
const average = sum / divisibleByThree.length;
console.log(`被3整除的数的和为: ${sum},平均数为: ${average}`);
```
这个代码片段的意思是,首先创建一个长度为100的数组,然后筛选出被3整除的数,然后累加这些被3整除的数求和,接着除以这些数的个数计算平均值。最后使用 console.log 将结果输出到控制台上。
希望这个答案对你有所帮助!
阅读全文