getUTCDay()
Date
instance method
JS Home <<
JS Reference <<
Date <<
getUTCDay()
Description
Returns the UTC day of the week (0-6) for the specified date. 0 = Sunday, 1 = Monday etc.
Syntax
Signature | Description |
---|---|
aDate.getUTCDay() | Returns the UTC day of the week (0-6) for the specified date. 0 = Sunday, 1 = Monday etc. |
Parameters
None.
Examples
The code below shows examples of the getUTCDay()
method of Date
.
// Create a Date instance for the current date and time.
var todaysDate = new Date();
alert(todaysDate);
// Get UTC Day of the month.
alert(todaysDate.getUTCDay() + ' = Day of week as a number');
// Use an array to display the date as a string.
var days = ['Sunday', 'Monday', 'Tuesday', 'Wednesday',
'Thursday', 'Friday', 'Saturday'];
alert(days[todaysDate.getUTCDay()] + ' = Day of week as a string');
Related Tutorials
JavaScript Intermediate Tutorials - Lesson 2 - Dates and Times