Month
获取或设置月份。
传入 0 到 11 的 number。 如果超出这个范围,它会进位到年份。
javascript
dayjs().month(); // gets current month
dayjs().month(0); // returns new dayjs object
提示
月份是从 0 开始计算的,即 1 月是 0。