月份
获取或设置月份。
¥Gets or sets the month.
接受从 0 到 11 的数字。如果超出范围,它将冒泡到年份。
¥Accepts numbers from 0 to 11. If the range is exceeded, it will bubble up to the year.
dayjs().month() // gets current month
dayjs().month(0) // returns new dayjs object
月份是零索引的,所以一月是第 0 个月。
¥Months are zero indexed, so January is month 0.