regex vs includes - case insensitive
Date tested:
3 months ago
User agent:
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36
Test name
Executions per second
regex
13284410.0 Ops/sec
includes
13807980.0 Ops/sec
Benchmark definition (click to collapse):
Script Preparation code:
var string = "Hello world!"; var regex = /hello/i; var search = "hello";
Tests:
regex
regex.test(string);
includes
string.toUpperCase().includes(search.toUpperCase());
Open this result on MeasureThat.net