Test name | Executions per second |
---|---|
RegEx.test | 9960911.0 Ops/sec |
String.includes | 13843043.0 Ops/sec |
String.match | 4720408.5 Ops/sec |
String.indexof | 508232384.0 Ops/sec |
var string = "Hello world!";
var regex = /Hello/;
regex.test(string);
string.includes("Hello");
string.match("Hello");
string.indexOf("Hello")