如何将小数点移至整数的百分之一?
这似乎是一个愚蠢的问题,但我不知道如何将代表美分的整数转换为美元。
3000-> javascript 中的30.00
...
我使用的是 ParseFloat 但它只给我返回整数 =/ 我需要始终显示分,即使它是 0。
This seems like a silly question but I cant figure out how to convert an integer number that represent cents to dollars.
3000 -> 30.00
in javascript...
I was using ParseFloat but it's only giving me back the integer =/ I need to always display the cents even if its 0.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
使用
toFixed()
。Use
toFixed()
.尝试类似的事情:
Try something similar to:
您可以除以一百,然后调用 toFixed 方法将其格式化为小数点后两位。
myNumber.toFixed(2)
编辑:“然后”是“十”:\
You can divide by one hundred, and then call the
toFixed
method to format it to two decimal places.myNumber.toFixed(2)
Edit: "Then" was "ten" :\
我将其他人提供的
toFixed(2)
方法与预先存在的 货币格式化程序如果有人偶然发现它很方便的话。cents-to-currency
不尝试做任何自我推销或任何事情: D
I combined the
toFixed(2)
method others have provided with a pre-existing currency formatter if anyone stumbling upon this finds it handy.cents-to-currency
Not trying to do any self-promo or anything :D