标签: javascript node.js floating-point int
我想将1.7976舍入为1.8。我已经尝试过Math.round()和Math.float(),但都给了我2,而不是我想要的。
答案 0 :(得分:-1)
var number = 1.7976; var rounded = Math.round( number * 10 ) / 10; console.log(rounded);