Sets the month of the UTC date, which is any number 0 or greater. Numbers greater than 11 add years.
var myDate = new Date();
/*from ww w . j ava2 s .c o m*/
myDate.setUTCMonth(01);
console.log(myDate.toString());
The code above generates the following result.