如何使用浮点数进行Math.pow?

时间:2016-02-19 15:22:09

标签: javascript math floating-point

我正在Math.pow(6.9, 3)并获得328.50900000000007而不是328.509。我怎样才能得到328.509

我指的是JavaScript。

1 个答案:

答案 0 :(得分:1)

请看这里:Number.prototype.toFixed()

所以你需要Math.pow(6.9, 3).toFixed(3)