如何将 Int 数转换为 Double 数?
使用 Javascript:
如何将一个数字整数转换为双精度数字示例:
100 -> 100.00
Using Javascript:
How I can convert one number integer to Double Number Example:
100 -> 100.00
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
JavaScript 中的所有数字都是双精度数:也就是说,它们存储为 64 位 IEEE-754 双精度数。
也就是说,目标不是获得“双精度”:目标是获得格式为“YYY.XX”的数字的字符串表示形式。为此,请考虑
Number.toFixed
,例如:结果是字符串(不是“双精度”!)
“100.00”
。在这种情况下,需要使用括号以避免语法歧义(也可以写为100.0.toFixed
或100..toFixed
),但如果100 是一个变量。快乐编码。
All numbers in JavaScript are doubles: that is, they are stored as 64-bit IEEE-754 doubles.
That is, the goal is not to get a "double": the goal is to get the string reprsentation of a number formatted as "YYY.XX". For that, consider
Number.toFixed
, for instance:The result is the string (not a "double"!)
"100.00"
. The parenthesis are required to avoid a grammar ambiguity in this case (it could also have been written as100.0.toFixed
or100..toFixed
), but would not be required if 100 was in a variable.Happy coding.
JavaScript 数字已经是 IEEE 754 浮点数 (规范)。如果您想对其进行格式化(用于输出),可以使用<代码>toFixed[MDN]。
JavaScript numbers are already IEEE 754 floating point numbers (specification). If you want to format it (for output), you can use
toFixed
[MDN].所有数字在 JavaScript 中都存储为双精度数。
All numbers are stored as doubles in javascript.
所有数字在 JavaScript 中都存储为双精度数。
如果您想在数字后指定特定的小数点,可以使用 toFixed
All numbers are stored as doubles in javascript.
You can use toFixed if you want specific decimal points after the number