<script src='https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.7.11/lodash.min.js'></script>
function getRandomInt(max) {
return Math.floor(Math.random() * Math.floor(max));
}
var arr = [];
for(var i = 0; i < 1000; i++){
arr.push({value:getRandomInt(100)});
}
for (let i = 0; i < arr.length; i++) _.floor(arr[i], -2);
for (let i = 0; i < arr.length; i++) Math.floor(arr[i] * 100) / 100;
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
_.floor | |
Math.floor |
Test name | Executions per second |
---|---|
_.floor | 1201.3 Ops/sec |
Math.floor | 4298.8 Ops/sec |
Let's break down the provided benchmark and explain what's being tested.
Benchmark Context
The test is comparing two approaches: using Math.floor
(the built-in JavaScript function) versus using the _floor
function from the Lodash library. The test case generates an array of random integers with a value between 0 and 100, and then applies each approach to this array.
Options Compared
Two options are being compared:
(Lodash)**: This is a utility function from the Lodash library that performs a similar operation as
Math.floor`, but with more flexibility and options.Pros and Cons
Math.floor:
Pros:
Cons:
_.floor` (Lodash):
Pros:
Cons:
Math.floor
, since it involves additional logic and checks.Library: Lodash
Lodash is a popular JavaScript utility library that provides a collection of functional programming helpers, including array and number utilities like _floor
. The _floor
function is part of this library and offers more flexibility and options compared to Math.floor
.
Special JS Feature/Syntax
None mentioned in the provided benchmark definition.
Other Alternatives
If you're looking for alternatives to Math.floor
, other options might include:
Number.EPSILON
: This is a property that represents the smallest positive value that can be added or subtracted from 1.0 without changing its value.In summary, this benchmark compares two approaches for rounding numbers in JavaScript: Math.floor
(the built-in function) versus the _floor
function from Lodash (a utility library). The test highlights the pros and cons of each approach, with Math.floor
offering fast execution but limited control over rounding behavior, while _floor
provides more flexibility and options at the cost of slower execution.