Subscriber portal
Returns the day of the month in a Date object using Coordinated Universal Time (UTC).
function getUTCDate() : Number
To get the day of the month in local time, use the getDate method.
The return value is an integer between 1 and 31 that represents the day-of-the-month value in the Date object.
The following example illustrates the use of the getUTCDate method.
function UTCDateDemo(){ var d, s = "Today's UTC date is: "; d = new Date(); s += (d.getUTCMonth() + 1) + "/"; s += d.getUTCDate() + "/"; s += d.getUTCFullYear(); return(s); }
Version 3
Date Object