Tests:
  • Spread operator

    AخA
     
    const array = Array(1000000).fill(42);
    const array_copy = [...array];
  • Slice operator

     
    const array = Array(100000).fill(0);
    const array_copy = array.slice();
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    Spread operator
    Slice operator

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: one year ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/116.0
Firefox 116 on Windows
View result in a separate tab
Test name Executions per second
Spread operator 82.6 Ops/sec
Slice operator 2132.6 Ops/sec