根据世界时返回一个表示月份的数字。
dateObject.getUTCMonth();
该方法总是结合一个 Date 对象来使用。
var DATE = new Date(); console.log( DATE.getUTCMonth() );
>>> 8