Script Preparation code:
AخA
 
var someFloat = 0.123456789;
Tests:
  • toFixed(4) and parse

     
    +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;
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    toFixed(4) and parse
    toPrecision(4).toString()
    (Math.round(*10000)/10000).toString()
    Math.floor fast

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: one year ago)
Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Mobile Safari/537.36
Chrome Mobile 116 on Android
View result in a separate tab
Test name Executions per second
toFixed(4) and parse 372193.5 Ops/sec
toPrecision(4).toString() 587177.9 Ops/sec
(Math.round(*10000)/10000).toString() 641755.1 Ops/sec
Math.floor fast 1949975.0 Ops/sec