JScript  

getFullYear Method

Returns the year value in the Date object using local time.

dateObj.getFullYear() 

The required dateObj reference is a Date object.

Remarks

To get the year using Universal Coordinated Time (UTC), use the getUTCFullYear method.

The getFullYear method returns the year as an absolute number. For example, the year 1976 is returned as 1976. This avoids the year 2000 problem where dates beginning with January 1, 2000 are confused with those beginning with January 1, 1900.

The following example illustrates the use of the GetFullYear method.

function DateDemo(){
   var d, s = "Today's UTC date is: ";
   d = new Date();
   s += (d.getMonth() + 1) + "/";
   s += d.getDate() + "/";
   s += d.getFullYear();
   return(s);
}

Requirements

Version 3

See Also

Date Object Methods | getUTCFullYear Method | setFullYear Method | setUTCFullYear Method

Applies To: Date Object