gpt4 book ai didi

末尾带零的 Javascript 舍入(固定小数位数)

转载 作者:行者123 更新时间:2023-11-30 07:16:54 25 4
gpt4 key购买 nike

我使用 javascript round 对数字进行四舍五入。但当值为 $106.70 时,输出仅显示 $106.7 并且缺少最后一个 0。我如何为以零结尾的数字添加零,或者有没有比使用 if else 检查这个更简单的方法?

最佳答案

您可以使用 .toFixed方法:

var n = 106.72; console.log(n.toFixed(2)); //=> '106.72'
var n = 106.70; console.log(n.toFixed(2)); //=> '106.70'
var n = 106.7; console.log(n.toFixed(2)); //=> '106.70'
var n = 106; console.log(n.toFixed(2)); //=> '106.00'

它是圆的:

var n = 106.76; console.log(n.toFixed(1)); //=> '106.8'

关于末尾带零的 Javascript 舍入(固定小数位数),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12666617/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com