JavaScript | date.getUTCFullYear() Function
The date.getUTCFullYear() is an inbuilt function in JavaScript which is used to fetch the year according to universal time from a given Date object.
Syntax:
DateObj.getUTCFullYear();
In the above syntax, DateObj is a valid Date object created using Date() constructor from which we want to fetch year according to universal time.
Parameter: This function does not takes any parameter. It is just used along with a Date Object from which we want to fetch year according to universal time.
Return Values: It returns the year for the given date object DateObj according to universal time.
Below program illustrate the getUTCFullYear() method:
<script> // Here a date has been assigned according to universal // time while creating Date object var dateobj = new Date('October 15, 1996 05:35:32 GMT+11:00'); // year from above date object is // being extracted using getUTCFullYear(). var B = dateobj.getUTCFullYear(); // Printing year according to universal time. document.write(B); </script> |
Output:
1996
Errors and Exceptions:
- Example 1: The date of the month should must lie in between 1 to 31 because none of the month have date greater than 31 that is why it returns NaN i.e, not a number because date for the month does not exist. If date for the month does not exit, year will also not be existed.
<script>// Here a date has been assigned according to universal// time while creating Date objectvardateobj =newDate('October 45, 1996 05:35:32 GMT+11:00');// year from above date object is// being extracted using getUTCFullYear().varB = dateobj.getUTCFullYear();// Printing year according to universal time.document.write(B);</script>chevron_rightfilter_noneOutput:
NaN
- Example 2: If nothing as parameter is given to the Date() constructor, the getUTCFullYear() function returns the current year according to universal time.
<script>// Creating Date objectvardateobj =newDate();// year from above date object is// being extracted using getUTCFullYear().varB = dateobj.getUTCFullYear();// Printing current year// according to universal time.document.write(B);</script>chevron_rightfilter_noneOutput:
2018
Application: It has many applications such as getting current year according to universal time. Below program shows one of the applications of this function. It gives the current year according to universal time.
<script> // Here a date has been assigned according to universal // time while creating a Date object var dateobj = new Date(); // year from above date object is // being extracted using getUTCFullYear(). var B = dateobj.getUTCFullYear(); // Printing current year // according to universal time. document.write(B); </script> |
Output:
2018
Supported Browsers: The browsers supported by JavaScript date.getUTCFullYear() Function are listed below:
- Google Chrome
- Internet Explorer
- Firefox
- Opera
- Safri
Recommended Posts:
- How to call a function that return another function in JavaScript ?
- JavaScript | Function Invocation
- JavaScript | String() Function
- JavaScript | Symbol.for() function
- JavaScript | Math.E() function
- JavaScript | toString( ) function
- JavaScript | Array every() function
- JavaScript | Array.of() function
- JavaScript | Function binding
- JavaScript | toPrecision( ) Function
- JavaScript | Array some() function
- What is the inline function in JavaScript ?
- Javascript | Number() Function
- JavaScript | Function Apply
- JavaScript | Function Definitions
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.
Improved By : Akanksha_Rai


