欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

JS获取最近一周的时间

程序员文章站 2022-06-07 12:53:39
...
const end = new Date()
const start = new Date()
start.setTime(start.getTime() - 3600 * 1000 * 24 * 7)
const date = [start, end]
date输出:
0: Wed Jul 10 2019 12:21:48 GMT+0800 (中国标准时间) {}
1: Wed Jul 17 2019 12:21:48 GMT+0800 (中国标准时间) {}