gpt4 book ai didi

javascript - 停止 .toFixed 舍入数字

转载 作者:行者123 更新时间:2023-11-30 08:53:42 26 4
gpt4 key购买 nike

我有以下内容

var dividedResult =  (893/ 200);    

var result = dividedResult.toFixed(decimalPlaces);

分割结果为

4.465 

结果是

4.5

在这种情况下如何停止舍入?

我想要的结果是

4.4

最佳答案

试试这个 4.465 * 10 = 44.65 .. parseInt(44.65) = 44/10 = 4.4

result = parseInt(result * 10)/10;

对于任意小数位

result = parseInt(result * Math.pow(10,NumberOfDecimalPlaces))/(Math.pow(10,NumberOfDecimalPlaces));

关于javascript - 停止 .toFixed 舍入数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15496609/

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