如何将 Int 数转换为 Double 数?

发布于 2024-12-03 05:13:38 字数 93 浏览 2 评论 0原文

使用 Javascript:

如何将一个数字整数转换为双精度数字示例:

100 -> 100.00

Using Javascript:

How I can convert one number integer to Double Number Example:

100 -> 100.00

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

奢欲 2024-12-10 05:13:38

JavaScript 中的所有数字都是双精度数:也就是说,它们存储为 64 位 IEEE-754 双精度数。

也就是说,目标不是获得“双精度”:目标是获得格式为“YYY.XX”的数字的字符串表示形式。为此,请考虑 Number.toFixed,例如:

(100).toFixed(2)

结果是字符串(不是“双精度”!)“100.00”。在这种情况下,需要使用括号以避免语法歧义(也可以写为 100.0.toFixed100..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:

(100).toFixed(2)

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 as 100.0.toFixed or 100..toFixed), but would not be required if 100 was in a variable.

Happy coding.

随心而道 2024-12-10 05:13:38

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].

绳情 2024-12-10 05:13:38

所有数字在 JavaScript 中都存储为双精度数。

All numbers are stored as doubles in javascript.

满地尘埃落定 2024-12-10 05:13:38

所有数字在 JavaScript 中都存储为双精度数。
如果您想在数字后指定特定的小数点,可以使用 toFixed

All numbers are stored as doubles in javascript.
You can use toFixed if you want specific decimal points after the number

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文