使用 toFixed(2) 和数学舍入来获得正确的舍入
我想找到一个返回这种格式化值的函数:
1.5555 => 1.55
1.5556 => 1.56
1.5554 => 1.55
1.5651 => 1.56
toFixed() 和 math round 返回这个值:
1.5651.fixedTo(2) => 1.57
这对于金钱四舍五入很有用。
I would like to find a function that will return this kind of formatted values :
1.5555 => 1.55
1.5556 => 1.56
1.5554 => 1.55
1.5651 => 1.56
toFixed() and math round return this value :
1.5651.fixedTo(2) => 1.57
This will be usefull for money rounding.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这个怎么样?
所以,这可行,但我想你会发现这不是一种普遍接受的舍入方式。
http://en.wikipedia.org/wiki/Rounding#Tie-breaking
How about this?
So, that works, but I think you'll find that it's not a generally-accepted way to round.
http://en.wikipedia.org/wiki/Rounding#Tie-breaking
标准函数
然后调用
And standard function
and then call
您可以使用本机 Number.toFixed() 方法。
上面返回 10.16。 Number.toFixed() 返回一个字符串,因此我使用 parseFloat 将其转换为数字。
You can use the native Number.toFixed() method.
The above returns 10.16. Number.toFixed() returns a string, so I use parseFloat to convert it to a number.