gpt4 book ai didi

javascript - 如何舍入 Javascript x 和 y 坐标的值

转载 作者:行者123 更新时间:2023-11-28 20:28:37 26 4
gpt4 key购买 nike

我正在显示这个变量,

var coords = 'Co-ords(' + hero.x + "," + hero.y + ')';

但是,当它显示时,它会像 294.99999999999 这样的大量数字出现

如何将其四舍五入到小数点后两位?

最佳答案

使用toFixed(n)四舍五入到特定的小数位数。

由于 float 表示数字的方式,它们并不精确。如果四舍五入到一定的小数位数,那么准确性通常不会成为问题。

var coords = 'Co-ords(' + hero.x.toFixed(2) + "," + hero.y.toFixed(2) + ')';

关于javascript - 如何舍入 Javascript x 和 y 坐标的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16880336/

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