JavaScript 小数
如何将整数类型转换为双精度/浮点类型以显示小数点?例如,如果我想将数字转换为货币格式:
5 将变成 5.00 4.3 会变成 4.30
javascript 有可以用来进行这种转换的东西吗?
How can I convert a integer type to a double/float type so it shows decimal points? For instance if I want to convert a number to a money format:
5 would turn into 5.00
4.3 would turn into 4.30
Does javascript have something I can use to do this kind of conversion?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您想要 toFixed:
You want toFixed:
您可以使用
toFixed(n)
,其中n
是小数位数。You can use
toFixed(n)
, wheren
is the number of decimal places.