Sets the year value in 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, 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:
function SetFullYearDemo(newyear){ var d, s; //Declare variables. d = new Date(); //Create Date object.d.setFullYear(
newyear)
; //Set year. s = "Current setting is "; s += d.toLocaleString(); return(s); //Return new date setting. }
Date Object Methods | getFullYear Method | getUTCFullYear Method | setUTCFullYear Method
Applies To: Date Object