getUTCFullYear()  Date  instance method getterS2C Home  « Globals « Date « getUTCFullYear()

Description

Returns the UTC year (CCYY) for the specified date.

Syntax

Signature Description
aDate.getUTCFullYear()Returns the UTC year (CCYY) for the specified date.

Parameters

None.

Examples

The code below shows an example of the getUTCFullYear() method of Date.


// Create a Date instance for the current date and time.
var todaysDate = new Date();
alert(todaysDate);

// Get UTC Year.
alert(todaysDate.getUTCFullYear() + ' = UTC full year');

Press the button below to action the above code:


Related Tutorials

JavaScript Intermediate Tutorials - Lesson 2 - Dates and Times

go to home page Homepage go to top of page Top