Demo benchmark
From https://benchmarkjs.com/
Date tested:
4 years ago
User agent:
Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 YaBrowser/20.3.2.282 (beta) Yowser/2.5 Safari/537.36
Test name
Executions per second
RegExp#test
16171437.0 Ops/sec
String#indexOf
609097472.0 Ops/sec
String#match
9375248.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