使用 toFixed(2) 和数学舍入来获得正确的舍入

发布于 2024-09-02 01:23:55 字数 239 浏览 4 评论 0原文

我想找到一个返回这种格式化值的函数:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

暗藏城府 2024-09-09 01:23:55

这个怎么样?

function wacky_round(number, places) {
    var multiplier = Math.pow(10, places+2); // get two extra digits
    var fixed = Math.floor(number*multiplier); // convert to integer
    fixed += 44; // round down on anything less than x.xxx56
    fixed = Math.floor(fixed/100); // chop off last 2 digits
    return fixed/Math.pow(10, places);
}

1.5554 => 1.55

1.5555 => 1.55

1.5556 => 1.56

1.5651 => 1.56

所以,这可行,但我想你会发现这不是一种普遍接受的舍入方式。
http://en.wikipedia.org/wiki/Rounding#Tie-breaking

How about this?

function wacky_round(number, places) {
    var multiplier = Math.pow(10, places+2); // get two extra digits
    var fixed = Math.floor(number*multiplier); // convert to integer
    fixed += 44; // round down on anything less than x.xxx56
    fixed = Math.floor(fixed/100); // chop off last 2 digits
    return fixed/Math.pow(10, places);
}

1.5554 => 1.55

1.5555 => 1.55

1.5556 => 1.56

1.5651 => 1.56

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

甜心小果奶 2024-09-09 01:23:55

标准函数

fixedTo = function (number, n) {
  var k = Math.pow(10, n);
  return (Math.round(number * k) / k);
}

然后调用

fixedTo(1.5555, 2)  // 1.56
fixedTo(1.5555, 2)  // 1.556
fixedTo(0.615, 2)   // 0.62

And standard function

fixedTo = function (number, n) {
  var k = Math.pow(10, n);
  return (Math.round(number * k) / k);
}

and then call

fixedTo(1.5555, 2)  // 1.56
fixedTo(1.5555, 2)  // 1.556
fixedTo(0.615, 2)   // 0.62
摇划花蜜的午后 2024-09-09 01:23:55

您可以使用本机 Number.toFixed() 方法。

parseFloat(10.159.toFixed(2))

上面返回 10.16。 Number.toFixed() 返回一个字符串,因此我使用 parseFloat 将其转换为数字。

You can use the native Number.toFixed() method.

parseFloat(10.159.toFixed(2))

The above returns 10.16. Number.toFixed() returns a string, so I use parseFloat to convert it to a number.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文