Run details:
Mozilla/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.6 Mobile/15E148 Safari/604.1
Mobile Safari 16
iOS 16.6
Mobile
one year ago
Test name Executions per second
toFixed(4) 6729252.5 Ops/sec
toPrecision(4).toString() 5870959.5 Ops/sec
(Math.round(*10000)/10000).toString() 6109882.0 Ops/sec
Math.floor fast 10662711.0 Ops/sec
Script Preparation code:
AخA
 
var someFloat = 0.123456789;
Tests:
  • toFixed(4)

     
    someFloat.toFixed(4);
  • toPrecision(4).toString()

     
    someFloat.toPrecision(4);
  • (Math.round(*10000)/10000).toString()

    x
     
    (Math.round(someFloat*10000)/10000);
  • Math.floor fast

     
    ~~(someFloat * 10000) / 10000;