setFullYear Method (Date) (JavaScript)
Sets the year of the Date object using local time.
dateObj.setFullYear(numYear[, numMonth[, numDate]])
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, JavaScript uses the value returned from the getMonth method.
In addition, if the value of an argument is greater than its calendar range or is negative, the date rolls forward or backward as appropriate.
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 before and after 1970.
The following example illustrates the use of the setFullYear method:
var date1 = new Date("1/1/2001"); date1.setFullYear(2007); var date2 = new Date("1/1/2001"); date2.setFullYear(2008, 10, 3); document.write (date1.toLocaleString()); document.write ("<br />"); document.write (date2.toLocaleString()); // Output: // Monday, January 01, 2007 12:00:00 AM // Monday, November 03, 2008 12:00:00 AM
Supported in the following document modes: Quirks, Internet Explorer 6 standards, Internet Explorer 7 standards, Internet Explorer 8 standards, Internet Explorer 9 standards, Internet Explorer 10 standards. Also supported in Windows Store apps. See Version Information.
Applies To: Date Object (JavaScript)