Date.getUTCDate

getUTCDate – Get the day of the month, according to universal time (from 1–31).

Description

Date.getUTCDate()

Return values

Integer

Examples

Example #1 – Get the local time zone offset.
console.log(new Date().getUTCDate()); // Gets the current day of the month, according to UTC.

External references