gpt4 book ai didi

javascript - 将区间数转换为浮点变量

转载 作者:行者123 更新时间:2023-11-28 01:54:16 24 4
gpt4 key购买 nike

我正在使用 JavaScript 来记录事件之间的时间。

所以,我设置了10的间隔

gameTimer = setInterval(incTime,10);

最后,例如,如果我得到 99 如何将其转换为浮点变量(0.099)?

最佳答案

At the end, for example if I get 99 how to convert it to a float variable (0.099) ?

你可以简单地将它除以 1000。像这样:-

var a = 99;
var b = 99/1000.0;
var result = b.toFixed(3); //Use this if you want to restrict the number after the decimal. Like 0.099

关于javascript - 将区间数转换为浮点变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19346612/

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