const data = []
for (let i = 0; i < 5000; ++i) data.push({
uuid: '69e4b161-0d5d-435f-aa76-51664ed79861',
caller_id_name: 'call2sip06408849',
caller_id_number: 'Hello',
destination_number: '101',
from_host: 'call2sip.onlinepbx.ru',
to_host: 'pbx2577.test.onpbx.ru',
start_stamp: 1672232065,
answer_stamp: 1672232065,
end_stamp: 1672232076,
duration: 11,
billsec: 0,
user_talk_time: 0,
hangup_cause: 'NORMAL_CLEARING',
call: {
first_uuid: '',
channels: {},
},
accountcode: 'inbound',
quality_score: 0,
blacklist_blocked: false,
rec_enabled: true,
domains: ['pbx2577.test.onpbx.ru'],
gateway: '',
origin: 'sip',
})
data.push({ username: 'titi' })
for (let i = 0; i < 2500; ++i) data.push({
uuid: '69e4b161-0d5d-435f-aa76-51664ed79861',
caller_id_name: 'call2sip06408849',
caller_id_number: 'Hi',
destination_number: '101',
from_host: 'call2sip.onlinepbx.ru',
to_host: 'pbx2577.test.onpbx.ru',
start_stamp: 1672232065,
answer_stamp: 1672232065,
end_stamp: 1672232076,
duration: 11,
billsec: 0,
user_talk_time: 0,
hangup_cause: 'NORMAL_CLEARING',
call: {
first_uuid: '',
channels: {},
},
accountcode: 'inbound',
quality_score: 0,
blacklist_blocked: false,
rec_enabled: true,
domains: ['pbx2577.test.onpbx.ru'],
gateway: '',
origin: 'sip',
})
data.find(e => e.caller_id_number === 'Hi')
data.some(e => e.caller_id_number === 'Hi')
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
Find | |
Some |
Test name | Executions per second |
---|---|
Find | 112797.8 Ops/sec |
Some | 106589.3 Ops/sec |
The benchmark provided compares two different approaches for searching through an array of objects in JavaScript: using Array.prototype.find()
and Array.prototype.some()
. Both methods are commonly used to search through data structures, but they have different purposes and performance characteristics, which is what this benchmark aims to highlight.
find
Method:
find
method searches through the array and returns the first element that satisfies the provided testing function. If no values satisfy the testing function, it returns undefined
.data.find(e => e.caller_id_number === 'Hi')
some
Method:
some
method tests whether at least one element in the array passes the test implemented by the provided function. It returns a boolean value (true
or false
).data.some(e => e.caller_id_number === 'Hi')
Performance: The benchmark results show the number of executions per second for each method:
find
executed approximately 112,797 times per second.some
executed approximately 106,589 times per second.The results indicate that although find
appears to be slightly faster in this test case, actual performance can depend on a variety of factors, such as the structure and size of the data, browser optimizations, and specific implementations.
Alternatives: Other options to consider for searching through arrays include:
filter
: This method creates a new array with all elements that pass the test implemented by the provided function. It can be useful when you want to get all matching elements rather than just the first one.forEach
: This method allows for executing a function for each element in the array. However, it does not return any value and is less optimal for searching purposes.Use Cases: The choice between find
and some
should be driven by the specific requirements of the task:
find
if you need the actual object and plan to manipulate or inspect it.some
if the existence of a condition is sufficient for your logic, leading to potential performance benefits.In summary, understanding the purpose of each method and the context in which they are used will help software engineers optimize their code effectively based on the needs of their applications.