gpt4 book ai didi

javascript - 如何从 TypeScript 中的 Number 类型的变量中乘以小数?

转载 作者:行者123 更新时间:2023-12-04 14:50:14 26 4
gpt4 key购买 nike

假设我有一个等于 288.65 的数字,我想乘以小数点以获得所需的结果 28865

如果我只是尝试说 console.log(288.65 * 100) 它将返回 28864.999999999996 我不确定它为什么这样做,任何帮助都会很大赞赏。

最佳答案

您可以使用 Math.ceilMath.round

The Math.ceil() function always rounds a number up to the next largestinteger.

The Math.round() function returns the value of a number rounded to thenearest integer.

const num = 288.65;

const result1 = Math.round(num * 100);
const result2 = Math.ceil(num * 100);

console.log(result1);
console.log(result2);

关于javascript - 如何从 TypeScript 中的 Number 类型的变量中乘以小数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69191829/

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