setFullYear Method (Windows Scripting - JScript)
Sets the year value in the Date object using local time.
Syntax
dateObj.setFullYear(numYear[, numMonth[, numDate]])
Arguments
dateObj
Required. Any Date object.numYear
Required. A numeric value equal to the year.numMonth
Optional. A numeric value equal to the month. The value for January is 0, and other month values follow consecutively. Must be supplied if numDate is supplied.numDate
Optional. A numeric value equal to the day of the month.
Remarks
All set methods taking optional arguments use the value returned from corresponding get methods, if you do not specify the optional argument. For example, if the numMonth argument is optional, but not specified, JScript uses the value returned from the getMonth method.
In addition, if the value of an argument is greater than its range or is a negative number, other stored values are modified accordingly.
To set the year using Universal Coordinated Time (UTC), use the setUTCFullYear method.
The range of years supported in the date object is approximately 285,616 years from either side of 1970.
The following example illustrates the use of the setFullYear method:
var dtFirst = new Date();
dtFirst.setFullYear(2007);
var dtSecond = new Date();
// 10 is the value for November.
dtSecond.setFullYear(2008, 10, 3);
document.write (dtFirst.toLocaleString());
document.write ("<br />");
document.write (dtSecond.toLocaleString());
Requirements
Applies To: Date Object (Windows Scripting - JScript)
Change History
Date |
History |
Reason |
---|---|---|
March 2009 |
Modified example and clarified arguments. |
Information enhancement. |
See Also
getFullYear Method (Windows Scripting - JScript)
getUTCFullYear Method (Windows Scripting - JScript)
setUTCFullYear Method (Windows Scripting - JScript)