js获取今天是一年中的第几天

// 获取今天是一年中的第几天
getDay() {
  const currentYear = new Date().getFullYear().toString();
  // 今天减今年的第一天(xxxx年01月01日)
  const hasTimestamp = new Date() - new Date(currentYear);
  // 86400000 = 24 * 60 * 60 * 1000
  let hasDays = Math.ceil(hasTimestamp / 86400000);return hasDays;
},

 

posted @ 2021-11-02 13:53  ALin_Da  阅读(943)  评论(0编辑  收藏  举报