Test name | Executions per second |
---|---|
startsWith | 1675506.0 Ops/sec |
regex | 1403089.0 Ops/sec |
indexOf | 1837554.2 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
}