Demo benchmark
From https://benchmarkjs.com/
Date tested:
2 months ago
User agent:
Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:131.0) Gecko/20100101 Firefox/131.0
Test name
Executions per second
RegExp#test
49556236.0 Ops/sec
String#indexOf
1585680256.0 Ops/sec
String#match
32897152.0 Ops/sec
Benchmark definition (click to collapse):
HTML Preparation code:
<div>This is demo</div>
Script Preparation code:
console.log("js preparation");
Tests:
RegExp#test
/o/.test('Hello World!');
String#indexOf
'Hello World!'.indexOf('o') > -1;
String#match
!!'Hello World!'.match(/o/);
Open this result on MeasureThat.net