JavaScript getUTCFullYear() 方法



JavaScript 的 Date getUTCFullYear() 方法用于检索日期的“全年”(根据世界协调时)。返回值将是日期对象的 UTC 时间的年份部分。如果日期无效,此方法返回非数字 (NaN)。此外,此方法不接受任何参数。

协调世界时 (UTC) 是世界用来调节时钟和时间的首要时间标准。而印度标准时间 (IST) 是在印度采用的时间,IST 和 UTC 之间的时差为 UTC+5:30(即 5 小时 30 分钟)。

语法

以下是 JavaScript Date getUTCFullYear() 方法的语法:

getUTCFullYear();

此方法不接受任何参数。

返回值

此方法返回一个 4 位整数,表示指定日期的世界协调时 (UTC) 年份。

示例 1

在下面的示例中,我们演示了 JavaScript Date 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”作为当前年份返回。

广告