仅在必要时将数字舍入为2位小数

时间:2017-05-27 13:06:14

标签: javascript arrays tofixed

所以我有以下代码从数组中提取数据并计算平均值。问题是,目前,即使平均值为3,也显示为3.00。我想要的是,如果需要,平均值只能达到2位小数。代码如下:

var calculated = playerdata.map((player) => {
  const rounds = player.slice(2);

  return {
    player,
    average: average(rounds).toFixed(2),
    best: Math.min(...rounds),
    worst: Math.max(...rounds)
  };
}); 

function average(numbers) {
  return numbers.reduce((a, b) => a + b, 0) / numbers.length;
}

3 个答案:

答案 0 :(得分:3)

您可以使用average(rounds).toFixed(2)添加+。像

+average(rounds).toFixed(2)

工作示例:

var roundTo2 = function(num) {
  return +num.toFixed(2);
}

console.log(roundTo2(3))
console.log(roundTo2(3.1))
console.log(roundTo2(3.12))
console.log(roundTo2(3.128))

更新

使用相关测试用例进行更新

答案 1 :(得分:2)

@ Maaz的解决方案也有效,但这是一个更加自我解释的解决方案:

average(rounds) * 100 % 1 ? average(rounds).toFixed(2) : average(rounds)

只有当数字超过2位小数时才会舍入:

f = function(a){return a * 100 % 1 ? a.toFixed(2) : a}

console.log(f(3))
console.log(f(3.1))
console.log(f(3.12))
console.log(f(3.128))

答案 2 :(得分:-1)

可以将数字的舍入整数值与其自身进行比较,以查看它是否具有使用Math.round()

的小数

function printVal(num){ 
  var isDecimal = Math.round(num) !== num; 
  return isDecimal ? num.toFixed(2) : num;  
}

console.log(printVal(3.01));
console.log(printVal(3.1));
console.log(printVal(3));