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

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM