如何将int转换为float?

时间:2016-04-25 14:19:36

标签: javascript types int

我有一个int,比如var myInt = 24,我需要它将它显示为像这样的浮点数:24,000。甚至可以在javascript中使用吗?

重要说明:转换后的浮点数应为数字,而不是字符串

2 个答案:

答案 0 :(得分:2)

您可以使用toFixed()在小数点后添加零。



var myInt = 24;
console.log(myInt.toFixed(3));




答案 1 :(得分:1)

使用Number.toFixed:



var int = 24
document.write('<pre>' + JSON.stringify(int.toFixed(3), 0, 4) + '</pre>');
&#13;
&#13;
&#13;