var string = "Hello world!";
var regex = /Hello/;
string.includes("Hello");
string.match("Hello");
string.startsWith("Hello");
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
String.includes | |
String.match | |
String.startsWith |
Test name | Executions per second |
---|---|
String.includes | 146861024.0 Ops/sec |
String.match | 9297873.0 Ops/sec |
String.startsWith | 77159624.0 Ops/sec |
The benchmark titled "RegEx.test vs. String.includes vs. String.match vs String.startsWith abc123" evaluates different methods available in JavaScript for checking if a substring (in this case, "Hello") exists within a larger string ("Hello world!"). The techniques being compared are String.includes
, String.match
, and String.startsWith
. Here's an overview of what each method does, their performance characteristics based on the benchmark results, as well as their pros and cons.
String.includes(...)
String.includes
method checks if a string contains another substring and returns a boolean (true
or false
).String.includes
achieved the highest execution rate, with approximately 146 million executions per second. String.startsWith(...)
true
or false
.String.match(...)
null
.Conditions and Environment: The tests were conducted in Chrome 131 on a macOS device, which may indicate specific performance characteristics relative to other environments or browsers. The performance may vary across different browsers and systems.
Use Cases: Each of these string methods serves different scenarios. For simple substring existence checks, String.includes
is preferred due to performance and readability. When checking for starting characters, String.startsWith
is the ideal choice. However, for more advanced matching needs (including patterns), String.match
might be necessary despite its slower performance.
Regex.test(...): An alternative to String.match
is RegExp.test()
, which can be more efficient for simple existence tests, returning a boolean without creating an array of matches.
String.indexOf(...): This older method checks the position of a substring within a string, where any index other than -1 signifies its presence. It has the benefit of compatibility with very old JavaScript environments, but lacks the readability and semantic clarity of includes
.
Overall, the benchmark highlights performance differences among common string methods in JavaScript, demonstrating that for basic substring checking, String.includes
is the most efficient choice, whereas String.match
offers pattern matching at the cost of performance. The discussion around the pros and cons of these methods will guide developers in choosing the right strategy based on their specific use cases and performance requirements.