Run details:
Mozilla/5.0 (iPhone; CPU iPhone OS 14_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/92.0.4515.90 Mobile/15E148 Safari/604.1
Chrome Mobile iOS 92
iOS 14.7
Mobile
one year ago
Test name Executions per second
toFixed(4) 4428661.5 Ops/sec
toPrecision(4).toString() 3002702.0 Ops/sec
(Math.round(*10000)/10000).toString() 2294490.8 Ops/sec
Math.floor fast 6336354.5 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;