作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图从数组中排除“0”值以获得更好的平均结果。
我的数组是:[0, 0, 0, 0, 80, 90, 100, 0]
function clacGPA(gradeData) {
var sum, avg = 0;
if (gradeData.length) {
sum = gradeData.reduce(function (a, b) {
return a + b;
});
avg = sum / gradeData.length;
}
document.getElementById('gpa').innerText = avg.toFixed(2);
}
My expected result should be:
avg = 80+90+100 / 3
最佳答案
先过滤掉0值:
clacGPA([0, 0, 0, 0, 80, 90, 100, 0]);
function clacGPA(gradeData) {
const filtered = gradeData.filter(item => item !== 0);
const sum = filtered.reduce((a, b) => a + b);
const avg = sum / filtered.length;
console.log(avg);
}
关于javascript - 计算平均值时如何从数组中排除零值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55660452/
我是一名优秀的程序员,十分优秀!