Script Preparation code:
x
 
    function fromNumberToObject(id = 0) {
      return {
        id,
        value: id + id,
        name: 'example',
      };
    }
    var list = [...Array(30000).keys()].map(fromNumberToObject);
Tests:
  • Array.prototype.slice

     
    list.slice();
  • spread operator

     
    [...list];
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    Array.prototype.slice
    spread operator

    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/85.0.4183.102 Safari/537.36
Chrome 85 on Windows
View result in a separate tab
Test name Executions per second
Array.prototype.slice 159025.1 Ops/sec
spread operator 135973.3 Ops/sec