Script Preparation code:
x
 
var arr = OntologyUnusedSymbols = [':', '(', ')', '<', '>', '[', ']'];
var regex = /[:\(\)<>\[\]]/g
var target = 'Prontaprint/Lets Talk Print (Dundee, UK)'
Tests:
  • substring

     
    for(var index = 0; index < arr.length; index++) {
      target.replace(arr[index], ' ');
    }
  • Regex

     
    target.replace(regex, ' ');
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    substring
    Regex

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 2 years ago)
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36
Chrome 107 on Mac OS X 10.15.7
View result in a separate tab
Test name Executions per second
substring 821395.2 Ops/sec
Regex 6236650.5 Ops/sec