HTML Preparation code:
AخA
 
1
<script src='https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.5/lodash.min.js'></script>
Script Preparation code:
 
var existing = [ 1, 2, "hello", true, 7 ];
var newi = [1, 1, 1];
Tests:
  • Array.prototype.concat

     
    var test = existing.concat(newi);
  • spread operator

     
    var test = [ ...existing, ...newi ];
  • copy on push

     
    var test = newi.forEach(i => existing.concat().push(i));
  • directly push

     
    existing.forEach(i => newi.push(i));
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    Array.prototype.concat
    spread operator
    copy on push
    directly push

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 3 years ago)
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36
Chrome 92 on Mac OS X 10.15.7
View result in a separate tab
Test name Executions per second
Array.prototype.concat 3642714.2 Ops/sec
spread operator 5745625.5 Ops/sec
copy on push 1481344.6 Ops/sec
directly push 2287795.2 Ops/sec