js中Date对象获取的月份
2021-04-13 09:40:25
需要,`getMonth` 方法返回的值为 0 ~ 11,其中 0 表示一月,11 表示 十二月。
>Example:
>```javascript
>const date = new Date(); // 2021-4-13
>console.log(`year = ${date.getFullYear()}`); // "year = 2021"
>console.log(`month = ${date.getMonth()}`); // "month = 3"
>console.log(`day = ${date.getDate()}`); // "day = 13"
>```