HTML Preparation code:
AخA
 
1
<script src='https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.5/lodash.min.js'></script>
Script Preparation code:
 
var x = Math.random() * 100;
Tests:
  • Round floating number using lodash round function

     
    for (var i = 0; i < 1000; i++) {
      _.round(x, 2);
    }
  • Round float number with Math.round

     
    for (var i = 0; i < 1000; i++) {
       Math.round(x * 100) / 100
    }
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    Round floating number using lodash round function
    Round float number with Math.round

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: one year ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/117.0
Firefox 117 on Windows
View result in a separate tab
Test name Executions per second
Round floating number using lodash round function 1478.3 Ops/sec
Round float number with Math.round 2294264.8 Ops/sec