Script Preparation code:
AخA
 
var array = ["hello", true, 7];
var newElement = "new";
Tests:
  • Array.prototype.toSpliced

     
    const newArray = array.toSpliced(array.length, 0, newElement);
  • Spread operator

     
    const newArray = [...array, newElement];
  • Array.prototype.slice + Array.prototype.push

     
    const newArray = array.slice();
    newArray.push(newElement);
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    Array.prototype.toSpliced
    Spread operator
    Array.prototype.slice + Array.prototype.push

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 8 months ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36
Chrome 126 on Windows
View result in a separate tab
Test name Executions per second
Array.prototype.toSpliced 7445254.0 Ops/sec
Spread operator 12354495.0 Ops/sec
Array.prototype.slice + Array.prototype.push 12673347.0 Ops/sec