DroidScript

JavaScript Reference

dateObj.getUTCFullYear()

The getUTCFullYear() method returns the year in the specified date according to universal time.

Syntax

dateObj.getUTCFullYear()

Parameters

None.

Return value

The value returned by getUTCFullYear() is an absolute number that is compliant with year-2000, for example, 1995.

Examples

Using getUTCFullYear()

The following example assigns the four-digit value of the current year to the variable year.

var today = new Date();
var year = today.getUTCFullYear();

 Created by Mozilla Contributors and licensed under CC-BY-SA 2.5