var result = [];
var arrayTest = [];
for(var i = 0; i === 10000; i++){
if(i === 6000){
arrayTest.push(2);
}else{
arrayTest.push(Math.round(Math.random()));
}
}
result = arrayTest.filter(v => v !== 2);
result = arrayTest.splice((arrayTest.indexOf(2)-1),1);
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
Array.filter | |
Array.indexOf + Array.splice |
Test name | Executions per second |
---|---|
Array.filter | 3662937.5 Ops/sec |
Array.indexOf + Array.splice | 3576650.2 Ops/sec |
Let's dive into the benchmark and explain what's being tested.
The provided JSON represents two test cases for measuring the performance of JavaScript arrays. The tests are designed to compare the execution speed of two approaches:
Approach 1: Array.filter
result = arrayTest.filter(v => v !== 2);
This approach uses a callback function to create a new array that includes only elements from arrayTest
that don't match the value 2
.
Approach 2: Array.indexOf + Array.splice
result = arrayTest.splice((arrayTest.indexOf(2)-1),1);
This approach uses the indexOf
method to find the index of the first occurrence of 2
in arrayTest
, and then uses splice
to remove the element at that index.
What's being tested?
The test is measuring which approach is faster: using Array.filter
or using Array.indexOf + Array.splice
.
Pros and Cons:
V8
(JavaScript engine) can't optimize it efficiently.Library/External Dependency:
There is no external library or dependency being used in these tests. The Math
object and Array
methods are built-in JavaScript functionality.
Special JS Feature/Syntax:
There are no special JavaScript features or syntaxes used in this benchmark. It only involves standard array methods and basic arithmetic operations.
Other Alternatives:
If you want to measure the performance of other approaches, here are some alternatives:
Array.map
instead of Array.filter
Array.slice
instead of Array.splice
Keep in mind that each alternative may have its own trade-offs and performance characteristics.