For 语句中的 JavaScript 路由
我有这样一行:
for (var j = 0; j<1; j = (j + 0.1).toPrecision(1))
我正在尝试设置此语句,以便我得到 0, 0.1, 0.2, 0.3 直到数字 1。
目前我得到 0, 0.1,然后什么都没有,就好像结果直接传递到 1 一样,
简单地使用 j = j + 0.1 会产生舍入误差,我需要精确的小数位。
有什么建议吗?
I have this line:
for (var j = 0; j<1; j = (j + 0.1).toPrecision(1))
I'm trying to set up this statement so I get 0, 0.1, 0.2, 0.3 up to the number 1.
At the moment I get 0, 0.1 and then nothing as if the result goes straight passed 1,
Simply using j = j + 0.1 produces rounding errors and I need the precise decimal place.
Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最好这样做。
如果需要精度的话
It's better to do
if you need precision.
试试这个...当您使用 toPrecision 时,它不再是数字,因此它在第一次迭代后失败。
Try this... When you use toPrecision its not number any more so it fails after the first iteration.