我如何得到第二个小数位0?
例如:
15.296326 => 15.30
15.245152 => 15.20
我已尝试toFixed()
和Math.Floor
,但未能得到预期答案。
答案 0 :(得分:3)
function roundFloat(n) {
return (Math.round(n * 10) / 10).toFixed(2);
}
roundFloat(15.296326); // "15.30"
roundFloat(15.245152); // "15.20"