其他分享
首页 > 其他分享> > js获取今天是一年中的第几天

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;
},

 

标签:01,第几天,currentYear,60,获取,Date,new,js
来源: https://www.cnblogs.com/alinda/p/15498617.html