Run details:
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36
Chrome 95
Mac OS X 10.15.7
Desktop
3 years ago
Test name Executions per second
From variable 2285.2 Ops/sec
From new Date 2080.7 Ops/sec
Tests:
  • From variable

    x
     
    const date = new Date("2020-03-20 0:04:02");
    for (let i = 0; i < 100; i++) {
      console.log(date.getDate())
    }
  • From new Date

     
    for (let i = 0; i < 100; i++) {
      console.log(new Date("2020-03-20 0:04:02").getDate())
    }