标签: javascript math floating-point
我正在Math.pow(6.9, 3)并获得328.50900000000007而不是328.509。我怎样才能得到328.509?
Math.pow(6.9, 3)
328.50900000000007
328.509
我指的是JavaScript。
答案 0 :(得分:1)
请看这里:Number.prototype.toFixed()
所以你需要Math.pow(6.9, 3).toFixed(3)
Math.pow(6.9, 3).toFixed(3)