fork download
  1. let date = new Date()
  2. console.log( date )
  3. date.setMonth( date.getMonth() + 13 )
  4. console.log( date )
Success #stdin #stdout 0.02s 16912KB
stdin
Standard input is empty
stdout
Wed May 20 2020 15:39:09 GMT+0000 (UTC)
Sun Jun 20 2021 15:39:09 GMT+0000 (UTC)