JavaScript Date getUTCDate() Method

Get the UTC day

Definition and Usage

getUTCDate() returns the day of the month (1 to 31) of a date object.
getUTCDate() returns the day according to UTC.

Notes

UTC (Universal Time Coordinated) is the time set by the World Time Standard.

UTC time is the same as GMT time (Greenwich Mean Time).

All JavaScript getUTC methods assume that the date is of local time.

Syntax

Date.getUTCDate()

Parameters

NONE

Return Value

Type Description
A numberThe day of the month (1 to 31) of a date, according to UTC.

Browser Support

getUTCDate() is an ECMAScript1 (ES1) feature.

ES1 (JavaScript 1997) is fully supported in all browsers:

Chrome IE Edge Firefox Safari Opera
Yes Yes Yes Yes Yes Yes