HTML Preparation code:
AخA
 
1
<div>This is demo</div>
Script Preparation code:
 
console.log("js preparation");
var re = /o/;
Tests:
  • RegExp#test

     
    /o/.test('Hello World!');
  • String#indexOf

     
    'Hello World!'.indexOf('o') > -1;
  • String#match

     
    !!'Hello World!'.match(/o/);
  • Preallocated RegExp#test

     
    re.test('Hello World!');
  • Preallocated String#match

     
    !!'Hellow World!'.match(re);
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    RegExp#test
    String#indexOf
    String#match
    Preallocated RegExp#test
    Preallocated String#match

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 2 years ago)
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36
Chrome 106 on Mac OS X 10.15.7
View result in a separate tab
Test name Executions per second
RegExp#test 80133112.0 Ops/sec
String#indexOf 1029304192.0 Ops/sec
String#match 43567412.0 Ops/sec
Preallocated RegExp#test 20731668.0 Ops/sec
Preallocated String#match 15486220.0 Ops/sec