getUTCFullYear (JavaScript)
Gets the year in UTC
Defined in
Date (Standard - JavaScript)Syntax
getUTCFullYear() : int
Return value | Description |
---|---|
int |
The full year. |
Examples
This computed label adds one year to the current date. One day is first subtracted if the date is February 29 (leap year) so it appears as February 28 instead of March 1 in the next year.// Next year same time
var date = new Date();
if(date.getUTCMonth() == 1) // if Feb
if(date.getUTCDate() > 28) // if Feb 29
date.setUTCDate(date.getUTCDate() - 1);
date.setUTCFullYear(date.getUTCFullYear() + 1);
date.toUTCString()