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

getUTCDay Method (Date) (JavaScript)

JavaScript - Internet Explorer 10

Gets the day of the week using Universal Coordinated Time (UTC).

dateObj.getUTCDay() 

The required dateObj reference is a Date object.

Returns an integer between 0 (Sunday) and 6 (Saturday) that represents the day of the week.

To get the day of the week using local time, use the getDate method.

The following example shows how to use the getUTCDay method.

var date = new Date("2/6/2001");
var day = date.getUTCDay();
document.write(day);

// Output: 2

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.