ES6 - getUTCMonth() 方法



JavaScript 的 date getUTCMonth() 方法根据世界标准时间返回指定日期中的月份。getUTCMonth 返回的值是一个介于 0 和 11 之间的整数,对应于月份。0 代表一月,1 代表二月,2 代表三月,依此类推。

语法

Date.getUTCMonth ()     

返回值

根据世界标准时间返回指定日期中的月份。

示例

var dt = new Date( "December 25, 1995 23:15:20" ); 
console.log("getUTCMonth() : " + dt.getUTCMonth());   

输出

getUTCMonth() : 11    
广告