Script Preparation code:
AخA
 
function getReConstructor() {
  return new RegExp('^[0-9a-fA-F]{24}$');
}
function getReLiteral() {
  return /^[0-9a-fA-F]{24}$/;
}
Tests:
  • new RegExp()

     
    getReConstructor().test('132abc67219f019afe12901a')
  • Literal

     
    getReLiteral().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: 5 years ago)
Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.80 Safari/537.36
Chrome 75 on Linux
View result in a separate tab
Test name Executions per second
new RegExp() 2153385.5 Ops/sec
Literal 5378140.0 Ops/sec