JavaScript tutorial:
setUTCFullYear method

 

Applies to: Date Object

The setUCTFullYear method is use to set the year value in the Date object using Universal Coordinated Time (UTC).

Syntax

objDate.setUTCFullYear(numYear[, numMonth[, numDate]])

The setUTCFullYear method syntax has these parts:

Part

Description

numYear

Required. A numeric value equal to the year.

numMonth

Optional. A numeric value equal to the month. Must be supplied if numDate is supplied.

numDate

Optional. A numeric value equal to the date.

Return

Returns the set year value in UTC format.

Example

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 optional, but not specified, JavaScript uses the value returned from the getMonth 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.

The following example illustrates the use of the setUTCFullYear method:

newyear = 2008;
d = new Date();
d.setUTCFullYear(newyear);
alert("Current setting is " + d);
//Another format
alert("Current setting is " + d.toUTCString());

  To run the code above, paste it into JavaScript Editor, and click the Execute button

See also: Date Object Methods, getFullYear Method, getUTCFullYear Method, setFullYear Method