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',
})
for (let i = 0; i < 1; ++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 | 208629.9 Ops/sec |
Some | 210687.3 Ops/sec |
The benchmark presented evaluates the performance of two different JavaScript array methods: some()
and find()
on an array of objects representing call records. These methods are used to determine the presence of an element with a specific property value in the array, which in this case relates to the caller_id_number
.
Find Method:
data.find(e => e.caller_id_number === 'Hi')
find()
method returns the first element in the array that satisfies the provided testing function. If no values satisfy the testing function, it returns undefined
.Some Method:
data.some(e => e.caller_id_number === 'Hi')
some()
method tests whether at least one element in the array passes the test implemented by the provided function. It returns true
or false
.find()
:
some()
:
The benchmark results indicate that both methods are performant, with some()
registering approximately 210,687 executions per second and find()
around 208,630 executions per second. The small difference in speed suggests that while both methods are efficient, some()
is slightly faster in this context.
Filter: Using data.filter(e => e.caller_id_number === 'Hi')
would return an array of all matching objects. This is useful when multiple matches are expected, but it may incur additional performance cost due to the need to create a new array with potentially several matches.
For Loop: A traditional for
loop could be used to iterate through the array and find a match manually. This might offer some performance benefits for large datasets, especially if early termination is implemented upon finding the first match, but it sacrifices code readability and conciseness.
Map for Reference: If the dataset and search queries are large and repetitive, creating a Map from the dataset that allows for quick lookups (i.e., const map = new Map(data.map(e => [e.caller_id_number, e]))
) and then querying that map can result in faster searches. This approach trades memory for speed.
This benchmark serves as a practical comparison between two common JavaScript functions suited for searching within arrays. The choice between find()
and some()
depends on the specific use case—whether the need is to retrieve a full object or simply check for existence. Understanding the use cases and performance characteristics of these methods ensures developers can make informed choices in their JavaScript applications.