年积日
获取或设置一年中的第几天。
¥Gets or sets the day of the year.
接受从 1 到 366 的数字。
¥Accepts numbers from 1 to 366.
如果超出范围,它将冒泡到年份。
¥If the range is exceeded, it will bubble up to the years.
This requires the
DayOfYear
plugin to work
dayjs.extend(dayOfYear)
dayjs('2010-01-01').dayOfYear() // 1
dayjs('2010-01-01').dayOfYear(365) // 2010-12-31