Test name | Executions per second |
---|---|
startsWith | 6483139.5 Ops/sec |
regex | 6414550.5 Ops/sec |
indexOf | 7046817.5 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
}