const array = ['sdfsdfd', 'dsfwetwtwe', 'dsf1dsfdfsd', 'sdfdsfsdfsfsdf', 'sdfsdfd', 'dsf1wetwtwe', 'dsfdsfdfsd', 'sdfds1fsdfsfsdf', 'sdfsdfd', 'dsfwetwtwe', 'dsfdsfdfsd', 'sdfdsfsd1fsfsdf', 'sdfsdfd', 'dsfwetw1twe', 'dsfdsfdfsd', 'sdfdsfsdfsfsdf', 'sdfsdfd', 'dsfwetwtwe', 'dsfdsf1dfsd', 'sdfdsfsdfsfsdf']
const final = []
for (let i = 0; i < array.length; i++) {
const item = array[i]
if (item.includes('1')) {
final.push(item)
}
}
const array = ['sdfsdfd', 'dsfwetwtwe', 'dsf1dsfdfsd', 'sdfdsfsdfsfsdf', 'sdfsdfd', 'dsf1wetwtwe', 'dsfdsfdfsd', 'sdfds1fsdfsfsdf', 'sdfsdfd', 'dsfwetwtwe', 'dsfdsfdfsd', 'sdfdsfsd1fsfsdf', 'sdfsdfd', 'dsfwetw1twe', 'dsfdsfdfsd', 'sdfdsfsdfsfsdf', 'sdfsdfd', 'dsfwetwtwe', 'dsfdsf1dfsd', 'sdfdsfsdfsfsdf']
const final2 = array.filter(item => item.includes('1'))
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
for | |
filter |
Test name | Executions per second |
---|---|
for | 1152921.5 Ops/sec |
filter | 1159084.4 Ops/sec |
Overview of the Benchmark
The provided benchmark compares two approaches to filter an array in JavaScript: for
loop and filter()
method.
Test Cases
There are two test cases:
**: This test case uses a traditional
for` loop to iterate over the array and push items that contain the character '1' into a new array.**: This test case uses the
filter()` method to create a new array with only the items that contain the character '1'.Options Compared
The two options being compared are:
for
loopfilter()
methodPros and Cons of Each Approach
Traditional for
Loop:
Pros:
Cons:
filter()
Method:
Pros:
Cons:
Library Used
The filter()
method in JavaScript is a built-in method that uses a native implementation. It does not rely on any external libraries.
Special JS Feature/Syntax
There are no special JS features or syntax used in this benchmark.
Other Alternatives
If the for
loop approach was even slower than expected, other alternatives could be considered:
forEach()
with a callback functionmap()
with a filter-like callbackfilterBy()
methodHowever, it's worth noting that in this specific benchmark, the for
loop approach was not faster than expected, so alternative approaches may not provide significant benefits.