Script Preparation code:
AخA
 
var attrs = document.body.querySelector('.modal').attributes
Tests:
  • slice

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

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

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

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

     
    var other = Object.values(attrs);
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 365786.8 Ops/sec
spread operator 430096.5 Ops/sec
push apply into empty array 1110369.9 Ops/sec
Array.from 317905.8 Ops/sec
Object.values 75552.5 Ops/sec