咸鱼干的日常|日期加1天

【咸鱼干的日常|日期加1天】直接加24 * 60 * 3600只能用在new Date()时

let next = new Date((new Date() + 24*60*3600));

自定义日期加一天
let custom = new Date('2022-6-1'); let next = new Date(custom .setDate(custom .getDate() + 1)) // Thu Jun 02 2022 00:00:00 GMT+0800 (中国标准时间) {} // next.tolocalString() // 2022/6/2 00:00:00

    推荐阅读