Script Preparation code:
AخA
 
let str1 = '';
let str2 = '';
Tests:
  • String concatenation

     
    for (i = 0; i > 1000; i++) {
        str1 += "random text. ";
    }
  • Concat method

     
    for (i = 0; i > 1000; i++) {
        str2 = str2.concat("random text. ");
    }
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    String concatenation
    Concat method

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 2 years ago)
Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36
Chrome 101 on Linux
View result in a separate tab
Test name Executions per second
String concatenation 215045360.0 Ops/sec
Concat method 215769712.0 Ops/sec