Script Preparation code:
AخA
 
var children = document.body.children
Tests:
  • slice

     
    var other = Array.prototype.slice.call(children);
  • spread operator

     
    var other = [ ...children ]
  • push apply into empty array

     
    var other = [];
    [].push.apply(other, children)
  • Array.from

     
    var other = Array.from(children);
  • Object.values

     
    var other = Object.values(children);
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    slice
    spread operator
    push apply into empty array
    Array.from
    Object.values

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 7 years ago)
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36
Chrome 66 on Mac OS X 10.13.4
View result in a separate tab
Test name Executions per second
slice 181679.4 Ops/sec
spread operator 167057.8 Ops/sec
push apply into empty array 694577.9 Ops/sec
Array.from 139281.2 Ops/sec
Object.values 36432.2 Ops/sec