js猎取当前日期为一年中的第几天
const currentYear = new Date().getFullYear().toString();
// 本日减本年的第一天(xxxx年01月01日)
const hasTimestamp = new Date() - new Date(currentYear);
// 86400000 = 24 * 60 * 60 * 1000
const hasDays = Math.ceil(hasTimestamp / 86400000) + 1;
console.log('本日是%s年中的第%s天', currentYear, hasDays);
// 效果:本日是2018年的第329天