Sets the numeric day of the month in the Date object using Universal Coordinated Time (UTC).
SyntaxdateObj.setUTCDate( numDate )
The following example illustrates the use of the setUTCDate method.
function SetUTCDateDemo(newdayofmonth){
var d = new Date();
object.d.setUTCDate( newdayofmonth ) ;
var s = "Current setting is ";
s += d.toUTCString();
return(s);
}
Remarks
To set the day of the month using local time, use the setDate method.
If the value of numDate is greater than the number of days in the month stored in the Date object or is a negative number, the date is set to a date equal to numDate minus the number of days in the stored month. For example, if the stored date is January 5, 1996, and setUTCDate(32) is called, the date changes to February 1, 1996. Negative numbers have a similar behavior.
The setUTCFullYear method can be used to set the year, month, and day of the month.
See also Other articles AttributionsMicrosoft Developer Network: Article
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4