Run details:
Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36
Chrome 119
Linux
Desktop
one year ago
Test name Executions per second
startsWith 6483139.5 Ops/sec
regex 6414550.5 Ops/sec
indexOf 7046817.5 Ops/sec
Script Preparation code:
AخA
 
window.myString = "Hello, world!";
window.prefix = "Hello";
window.regex = /^Hello/;
Tests:
  • startsWith

     
    if (myString.startsWith(prefix)) {
       // do something
    }
  • regex

     
    if (regex.test(myString)) {
       // do something
    }
  • indexOf

     
    if (myString.indexOf(prefix) === 0) {
      // do something
    }