Run details:
Mozilla/5.0 (iPhone; CPU iPhone OS 16_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.2 Mobile/15E148 Safari/604.1
Mobile Safari 16
iOS 16.2
Mobile
2 years ago
Test name Executions per second
Round floating number using lodash round function 6229.4 Ops/sec
Round floating number using toFixed() 6448.6 Ops/sec
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 = 5.236;
Tests:
  • Round floating number using lodash round function

     
    for (var i = 0; i < 1000; i++) {
      _.round(x);
    }
  • Round floating number using toFixed()

     
    for (var i = 0; i < 1000; i++) {
      Math.round(x);
    }