Sets the year value in the Date object using Universal Coordinated Time (UTC).
SyntaxdateObj.setUTCFullYear( numYear [ , numMonth [ , numDate ]] )
The following example illustrates the use of the setUTCFullYear method.
var dtFirst = new Date();
dtFirst.setUTCFullYear(2007);
var dtSecond = new Date();
dtSecond.setUTCFullYear(2008, 10, 3);
document.write (dtFirst.toUTCString());
document.write ("<br />");
document.write (dtSecond.toUTCString());
Remarks
All set methods taking optional arguments use the value returned from corresponding get methods, if you do not specify an optional argument. For example, if the numMonth argument is not specified, JavaScript uses the value returned from the getUTCMonth method.
In addition, if the value of an argument is greater that its range or is a negative number, other stored values are modified accordingly.
To set the year using local time, use the setFullYear method.
The range of years supported in the Date object is approximately 285,616 years from either side of 1970.
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