Test name | Executions per second |
---|---|
toFixed(6) | 735316.2 Ops/sec |
toPrecision(6) | 805343.8 Ops/sec |
Math.round() | 812378.7 Ops/sec |
var randomFloat = 0.123456789;
Number(randomFloat.toFixed(6));
Number(randomFloat.toPrecision(6));
Math.round(randomFloat*Math.pow(10,6) / Math.pow(10,6))