Test name | Executions per second |
---|---|
Round floating number using lodash round function | 1105040.6 Ops/sec |
Round floating number using toFixed() | 5918113.0 Ops/sec |
<script src='https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.5/lodash.min.js'></script>
var x = 5.236;
_.round(x / 0, 2);
Math.round(x / 0);