Get the UTC day:
const d = new Date();
let day = d.getUTCDate();
Try it Yourself »
Get the UTC day of the month from a specific, local date-time:
const d = new Date("July 21, 1983 01:15:00");
let day = d.getUTCDate();
Try it Yourself »
getUTCDate()
returns the day of the month (1 to 31) of a date object.
getUTCDate()
returns the day according to UTC.
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.
Date.getUTCDate()
NONE |
Type | Description |
A number | The day of the month (1 to 31) of a date, according to UTC. |
getUTCDate()
is an ECMAScript1 (ES1) feature.
ES1 (JavaScript 1997) is fully supported in all browsers:
Chrome | Edge | Firefox | Safari | Opera | IE |
Yes | Yes | Yes | Yes | Yes | Yes |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!