Test name | Executions per second |
---|---|
startsWith | 790289.5 Ops/sec |
regex | 582831.0 Ops/sec |
indexOf | 714502.0 Ops/sec |
window.myString = "Hello, world!";
window.prefix = "Hello";
window.regex = /^Hello/;
if (myString.startsWith(prefix)) {
// do something
}
if (regex.test(myString)) {
// do something
}
if (myString.indexOf(prefix) === 0) {
// do something
}