Run details:
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
Windows
Desktop
one month ago
Test name Executions per second
split 11396031.0 Ops/sec
slice 59328740.0 Ops/sec
substring 56295652.0 Ops/sec
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);