Script Preparation code:
AخA
 
maind = document.createElement('div');
for (let i = 0; i < 10000; i++) {
    let d = document.createElement('div');
    maind.appendChild(d);
}
document.body.appendChild(maind);
Tests:
  • Array.prototype.slice.call

     
    Array.prototype.slice.call( maind.querySelectorAll('div') );
  • [].slice.call

     
    [].slice.call( maind.querySelectorAll('div') );
  • ...

     
    [...maind.querySelectorAll('div')]
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    Array.prototype.slice.call
    [].slice.call
    ...

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 4 years ago)
Mozilla/5.0 (Macintosh; Intel Mac OS X 11_2_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36
Chrome 88 on Mac OS X 11.2.1
View result in a separate tab
Test name Executions per second
Array.prototype.slice.call 776.9 Ops/sec
[].slice.call 789.2 Ops/sec
... 485.7 Ops/sec