JavaScript Date.getUTCFullYear() 方法用于检索日期的 “全年” (根据世界时)。返回值将是日期对象的 UTC 时间的年份部分。如果日期无效,则此方法将返回 Not a Number (NaN) 作为结果。此外,此方法不接受任何参数。
协调世界时 (UTC) 是世界调节时钟和时间的主要时间标准。而印度标准时间 (IST) 是在印度观察到的时间,IST 和 UTC 之间的时差为 UTC+5:30(即 5 小时 30 分钟)。
语法
以下是 JavaScript Date.getUTCFullYear() 方法的语法 -
getUTCFullYear();
此方法不接受任何参数。
返回值
此方法返回一个 4 位整数,表示指定日期的 UTC (协调世界时) 年份。
示例 1
在下面的示例中,我们将演示 JavaScript DDate.getUTCFullYear() 方法的基本用法 -
<html>
<body>
<script>
const currentDate = new Date();
const year = currentDate.getUTCFullYear();
document.write(year);
</script>
</body>
</html>
输出
上述程序根据 UTC 返回 “全年”。
示例 2
在这里,我们检索了特定日期“2020 年 12 月 31 日”的全年 -
<html>
<body>
<script>
const specificDate = new Date('2020-12-31 11:00:00');
const year = specificDate.getUTCFullYear();
document.write(year);
</script>
</body>
</html>
输出
上述程序返回整数 “2020” 作为给定日期的全年。
示例 3
在此示例中,使用 Date 构造函数创建自定义日期,并使用 getUTCFullYear() 获取该特定日期和时间的 UTC 年份。
<html>
<body>
<script>
const customDate = new Date(1995, 11, 17, 3, 24, 0); // December 17, 1995, 03:24:00
const year = customDate.getUTCFullYear();
document.write(year);
</script>
</body>
</html>
输出
正如我们所看到的,“1995” 作为当前年份返回。