gpt4 book ai didi

javascript - 如何在 float 后削减两位数?在 Javascript 中,无需更改为字符串

转载 作者:行者123 更新时间:2023-12-02 23:33:02 25 4
gpt4 key购买 nike

我想在浮点后取 2 位数字,如下例所示:

function cut() {

var num1=8.844

// should be return 8.84

var num2=8.847

// should be return 8.84
}

最佳答案

您可以将该值乘以 100,取下限值并除以 100。

您可能会亲眼目睹浮点运算的奇妙世界,其中数字或多或少都有一些小数,例如 Is floating point math broken?

function cut(value) {
return Math.floor(value * 100) / 100;
}

console.log(cut(8.844));
console.log(cut(8.847));

关于javascript - 如何在 float 后削减两位数?在 Javascript 中,无需更改为字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56408503/

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