Script Preparation code:
AخA
 
var date = "31/03/2025 - 06/03/2025";
Tests:
  • split

     
    const [start, end] = date.split("/");
  • slice

     
    const start = date.slice(0, 10);
    const end = date.slice(13, 23);
  • substring

     
    const start = date.substring(0, 10);
    const end = date.substring(13, 23);
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    split
    slice
    substring

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 25 days ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0
Chrome 134 on Windows
View result in a separate tab
Test name Executions per second
split 11396031.0 Ops/sec
slice 59328740.0 Ops/sec
substring 56295652.0 Ops/sec