Test name | Executions per second |
---|---|
Includes | 5037679.0 Ops/sec |
Match | 3604696.8 Ops/sec |
IndexOf | 5219480.5 Ops/sec |
string1 = "something is not right but we can make it longer < and > also more stuff < try to make it <br>"
if (!string1.includes("<br>") && !string1.includes("/>")) {
console.log("something else");
}
if (!string1.match(/(\/>|<br>)/)){
console.log("something else");
}
if (string1.indexOf("<br>") === -1 && string1.indexOf("/>") === -1) {
console.log("something else");
}