# Date.getUTCFullYear()

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

```javascript
var date1 = new Date('December 31, 1975, 23:15:30 GMT+11:00');
var date2 = new Date('December 31, 1975, 23:15:30 GMT-11:00');

console.log(date1.getUTCFullYear());
// expected output: 1975

console.log(date2.getUTCFullYear());
// expected output: 1976

```

## Syntax <a href="#syntax" id="syntax"></a>

```javascript
dateObj.getUTCFullYear()
```

**Return value**

A number representing the year in the given date according to universal time.

## Description

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

## Examples <a href="#examples" id="examples"></a>

#### Using `getUTCFullYear()` <a href="#using_getutcfullyear" id="using_getutcfullyear"></a>

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

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

## References <a href="#references" id="references"></a>

{% embed url="<https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/getUTCFullYear>" %}

## Contributors to this page <a href="#contributors-to-this-page" id="contributors-to-this-page"></a>

Uros Durdevic


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://date.gitbook.io/dateall/javascript/methods/date.getutcfullyear.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
