Test name | Executions per second |
---|---|
String.includes | 34278144.0 Ops/sec |
Single Match | 17993906.0 Ops/sec |
Multiple Match | 16417613.0 Ops/sec |
const testStrFirst = 'http://www.google.com';
testStrFirst.includes("localhost") && testStrFirst.includes("https")
const testStrFirst = 'http://www.google.com';
testStrFirst.match(/(https|localhost)/);
const testStrFirst = 'http://www.google.com';
testStrFirst.match(/https/) && testStrFirst.match(/localhost/);