<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.11/lodash.core.js"></script>
var users = Array.from(Array(10000).keys()).map(age => ([{
'user': age,
'age': age
},
]))
// Native
users.find(function (o) { return o.age < 5000; })
_.find(users, function (o) { return o.age < 5000; })
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
array find | |
_.find |
Test name | Executions per second |
---|---|
array find | 53588.3 Ops/sec |
_.find | 153614.5 Ops/sec |
I'll break down the provided benchmark definitions and explain what's being tested, the options compared, pros and cons of each approach, and other considerations.
Benchmark Definition JSON
The provided JSON represents a microbenchmarking test created using MeasureThat.net. It has three main sections:
Script Preparation Code: This section is executed before running the benchmark tests. In this case, it generates an array of 10,000 objects with 'user' and 'age' properties.
Html Preparation Code: This section includes a script tag that loads the Lodash library version 4.17.11. Lodash is a popular JavaScript utility library.
Benchmark Definition: This section defines two benchmark tests:
array find
: Tests finding an element in an array using the native find()
method._.find
: Tests finding an element in an array using the _find
function from the loaded Lodash library.Options Compared
The two options being compared are:
find()
: The built-in find()
method of JavaScript arrays, which returns the first element that satisfies the provided callback function._find
: A higher-order function provided by the Lodash library that performs a similar operation as the native find()
method.Pros and Cons
find()
:find()
, so this benchmark may not be representative for those platforms._find
:Other Considerations
o.age < 5000
). This might not accurately represent real-world scenarios where you need to find elements that satisfy more complex conditions.Library: Lodash
Lodash is a popular JavaScript utility library developed by Isaac Schlueter and Dean Edwards. It provides over 120 functions for tasks such as:
In this benchmark, Lodash's _find
function is used to find an element in the users
array that satisfies a given condition. The _find
function takes two arguments: the array to search and the callback function to execute on each element.
Special JS Feature/Syntax
There isn't any special JavaScript feature or syntax being tested in this benchmark, as both native find()
and Lodash's _find
are implementing the standard array method.