maind = document.createElement('div');
for (let i = 0; i < 10000; i++) {
let d = document.createElement('div');
maind.appendChild(d);
}
document.body.appendChild(maind);
Array.prototype.slice.call( maind.querySelectorAll('div') );
[].slice.call( maind.querySelectorAll('div') );
[maind.querySelectorAll('div')]
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
Array.prototype.slice.call | |
[].slice.call | |
... |
Test name | Executions per second |
---|---|
Array.prototype.slice.call | 776.9 Ops/sec |
[].slice.call | 789.2 Ops/sec |
... | 485.7 Ops/sec |
Let's break down the provided benchmark and explain what's being tested.
Benchmark Definition
The benchmark is testing three different ways to convert the result of querySelectorAll
method on an HTML element (maind
) into an array.
Options Being Compared
querySelectorAll
). The call()
part is used to call the slice()
function as a method on the Array prototype.[]
) instead of the Array.prototype
.querySelectorAll
into an array.Pros and Cons
Array.prototype.slice.call()
since it avoids the extra method call.Library/Utility Used
None of these options rely on a specific library or utility beyond standard JavaScript features.
Special JS Feature/Syntax
The use of arrow functions ([]
) in option 2 is an example of a modern JavaScript feature. Arrow functions were introduced in ECMAScript 2015 and provide a concise way to define small, single-expression functions.
Other Considerations
When testing performance-critical code like this benchmark, it's essential to consider factors such as:
Alternatives
Other alternatives for converting an iterable into an array include:
Array.from()
: Introduced in ECMAScript 2015, this method creates a new array from an iterable.iterableToArray()
functions: Some libraries and frameworks provide custom iterableToArray()
functions that can convert iterables to arrays.Keep in mind that the choice of alternative depends on the specific requirements and constraints of your project.