Run details:
Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:105.0) Gecko/20100101 Firefox/105.0
Firefox 105
Windows
Desktop
2 years ago
Test name Executions per second
Push 3023.6 Ops/sec
Join 9543.4 Ops/sec
Script Preparation code:
AخA
 
var strs = Array.from(new Array(10000)).map(() => 'String concat. ')
var result = []
Tests:
  • Push

     
    for (let i = 0; i < strs.length; i++) {
      result.push(strs[i])
    }
  • Join

     
    result = strs.map((a) => a)