Script Preparation code:
AخA
 
var string = "HelloWorld!".repeat(200) + " Hi";
Tests:
  • Concat

     
    for (let i = 0; i < 200; ++i) {
      let result = '';
      for (let j = 0; j < string.length; ++j) {
        if (' ' === string[j]) {
          break;
        }
        result += string[j];
      }
    }
  • Find and Substring

     
    for (let i = 0; i < 200; ++i) {
      let j;
      for (j = 0; j < string.length; ++j) {
        if (' ' === string[j]) {
          let result = string.substring(0, j);
          break;
        }
      }
    }
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    Concat
    Find and Substring

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 3 years ago)
Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:87.0) Gecko/20100101 Firefox/87.0
Firefox 87 on Ubuntu
View result in a separate tab
Test name Executions per second
Concat 63.0 Ops/sec
Find and Substring 95.7 Ops/sec