Sun Chili!Soft ASP Sun Chili!Soft
ASP Sun Microsystems

 

JScript Date Object setUTCFullYear Method

Sets the year value in the Date object according to Universal Coordinated Time (UTC).

Syntax: JScript Date Object setUTCFullYear Method

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

Arguments: JScript Date Object setUTCFullYear Method

objDate

The name of a Date object. Required.

numYear

A numeric value equal to the year. Required.

numMonth

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

numDate

A numeric value equal to the date. Optional.

Remarks: JScript Date Object setUTCFullYear Method

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, JScript 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 according to 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.

Copyright 2002 Sun Microsystems, Inc. All rights reserved. Legal Notice.