ES6 - setUTCMonth() 方法



JavaScript 日期 setUTCMonth() 方法根据世界时间设置指定日期的月份。

语法

Date.setUTCMonth ( monthvalue )      

参数

  • monthValue − 表示月份的 0 到 11 之间的整数。

范例

var dt = new Date( "Aug 28, 2008 23:30:00" ); 
dt.setUTCMonth(5);
console.log( dt );         

输出

Sat Jun 28 2008 23:30:00 GMT+0530 (India Standard Time)