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

 

上一篇:60集Python入门视频PPT整理 | Python编程基础及编程风格


下一篇:C语言:关机程序