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')]
  • push

     
    a=[];
    for(let i=0; i<10000; i++) {
      a.push(maind[i]);
    }
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

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

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 4 years ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.190 Safari/537.36
Chrome 88 on Windows
View result in a separate tab
Test name Executions per second
Array.prototype.slice.call 236.3 Ops/sec
[].slice.call 240.2 Ops/sec
... 169.5 Ops/sec
push 138.3 Ops/sec