Script Preparation code:
AخA
 
var reConstructor = new RegExp('^[0-9a-fA-F]{24}$')
var reLiteral = /^[0-9a-fA-F]{24}$/
Tests:
  • new RegExp()

     
    (new RegExp('^[0-9a-fA-F]{24}$')).test('132abc67219f019afe12901a')
  • Literal

     
    /^[0-9a-fA-F]{24}$/.test('132abc67219f019afe12901a')
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    new RegExp()
    Literal

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 4 days ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36
Chrome 122 on Windows
View result in a separate tab
Test name Executions per second
new RegExp() 1396474.4 Ops/sec
Literal 3394795.2 Ops/sec