<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.11/lodash.core.js"></script>
var users = [
{ 'id': 12, name: 'cool' },
{ 'id': 34, name: 'nais' },
{ 'id': 56, name: 'oopa' }
]
// Native
users.find(({ id }) => { return id === 34 })
_.find(users, ({ id }) => { return id === 34 })
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
array find | |
lodash find |
Test name | Executions per second |
---|---|
array find | 13738750.0 Ops/sec |
lodash find | 4241551.0 Ops/sec |
Let's break down the provided benchmark and explain what is being tested, compared, and their pros/cons.
Benchmark Overview
The benchmark compares two approaches to find an element in an array:
Array.prototype.find()
_.find()
functionTest Cases
There are two test cases:
users.find(({ id }) => { return id === 34 })
Array.prototype.find()
method._.find(users, ({ id }) => { return id === 34 })
_.find()
function.Options Compared
The benchmark compares two approaches:
Array.prototype.find()
: This method uses a callback function to iterate over the array and returns the first element that satisfies the condition._.find()
: This is a utility function that wraps the native Array.prototype.find()
method, providing additional features like support for multiple conditions.Pros/Cons
Here are some pros and cons of each approach:
Library: Lodash
Lodash is a popular utility library for JavaScript that provides a wide range of functions for tasks like array manipulation, string manipulation, and more. The _.find()
function is one of its core functions, which makes it easy to work with arrays in a concise and expressive way.
Special JS Feature/ Syntax: None
There are no special JavaScript features or syntax used in this benchmark.
Alternatives
If you're interested in exploring alternative approaches, here are some options:
Array.prototype.find()
method.Array.prototype.findIndex()
, Array.prototype.some()
, or Array.prototype.every()
.Keep in mind that each of these alternatives has its own trade-offs and may not offer significant performance improvements over the native Array.prototype.find()
method.