获取未来时间年月日

简介: 获取未来时间年月日

获取未来时间年月日

var getFutureDate = (breakDate) => {
  let arr = new Array(breakDate);
  for(let i=0;i<arr.length;i++){
  let thisTime = new Date(new Date().getTime() + 1000 * 60 * 60 * 24 * i);
  let fullYear=thisTime.getFullYear();
  let month=(thisTime.getMonth() + 1);
  let date=thisTime.getDate();
    arr[i]=`${fullYear}-${month}-${date}`
}
  return arr
}
console.log(getFutureDate(7));
// 0: "2022-9-29"
// 1: "2022-9-30"
// 2: "2022-10-1"
// 3: "2022-10-2"
// 4: "2022-10-3"
// 5: "2022-10-4"
// 6: "2022-10-5"

相关文章
|
8月前
|
存储 C语言 C++
c++日期和时间
c++日期和时间
52 0
|
8月前
年月日
年月日
58 0
|
8月前
|
C语言 C++
c++日期&时间
c++日期&时间
62 1
jeDate可提供选择日期不超过当前日期
jeDate可提供选择日期不超过当前日期
93 1
获取当前日期和时间
获取当前日期和时间
178 0
|
Java
获取当前日期时间
获取当前日期时间
156 0
1185. 一周中的第几天 : 简单日期统计模拟题
1185. 一周中的第几天 : 简单日期统计模拟题

热门文章

最新文章