Tests:
  • replace with global regexp

    AخA
     
    "i want to replace all the spaces in this string".replace(/ /g, "_");
  • replaceAll

     
    "i want to replace all the spaces in this string".replaceAll(" ", "_");
  • split-join

     
    "i want to replace all the spaces in this string".split(" ").join("_");
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    replace with global regexp
    replaceAll
    split-join

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 29 days ago)
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36
Chrome 134 on Mac OS X 10.15.7
View result in a separate tab
Test name Executions per second
replace with global regexp 4336145.0 Ops/sec
replaceAll 3434794.2 Ops/sec
split-join 5454634.5 Ops/sec