Expand Minimize
This topic has not yet been rated - Rate this topic

getUTCMonth Method (Date) (JavaScript)

JavaScript - Internet Explorer 10

Gets the month of a Date object using Universal Coordinated Time (UTC).

dateObj.getUTCMonth() 

The required dateObj reference is a Date object.

Returns an integer between 0 (January) and 11 (December).

To get the month in local time, use the getMonth method.

The following example shows how to use the getUTCMonth method.

var date = new Date("2/2/2002");
document.write(date.getUTCMonth());

// Output: 1

Supported in the following document modes: Quirks, Internet Explorer 6 standards, Internet Explorer 7 standards, Internet Explorer 8 standards, Internet Explorer 9 standards, Internet Explorer 10 standards. Also supported in Windows Store apps. See Version Information.

Applies To: Date Object (JavaScript)

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.