Script Preparation code:
AخA
 
var str = '11:22';
Tests:
  • Regex

     
    const part1 = /(\d{1,2}):(\d{1,2})/.exec(str)[1];
  • Split

     
    const part1 = str.split(':')[0];
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    Regex
    Split

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 3 years ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36
Chrome 99 on Windows
View result in a separate tab
Test name Executions per second
Regex 6335266.0 Ops/sec
Split 5263898.5 Ops/sec