JavaScript getFullYear() 方法



JavaScript 中的 Date.getFullYear() 方法用于检索指定日期的“全年”(根据本地时间)。它不接受任何参数;它从 Date 对象返回一个四位数的整数(介于 1000 年和 9999 年之间)。

建议使用此方法从日期中检索“全年”,而不是 getYear() 方法。

语法

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

getFullYear();

此方法不接受任何参数。

返回值

此方法返回一个表示日期年份组件的四位数整数。

示例 1

在以下示例中,我们演示了 JavaScript Date getFullYear() 方法的基本用法:

<html>
<body>
<script>
   const currentDate = new Date();
   const year = currentDate.getFullYear();

   document.write(year);
</script>
</body>
</html>

输出

上述程序返回指定日期的全年。

示例 2

在这里,我们检索特定日期“2020 年 12 月 20 日”的全年:

<html>
<body>
<script>
   const currentDate = new Date('2020-12-20');
   const year = currentDate.getFullYear();

   document.write(year);
</script>
</body>
</html>

输出

上述程序返回整数“2020”作为给定日期的全年。

示例 3

在以下示例中,我们将 5 年添加到当前年份:

<html>
<body>
<script>
   const currentYear = new Date().getFullYear();
   const result = currentYear + 5;

   document.write(`Current Year: ${currentYear}` + "<br>");
   document.write(`After adding (5) years: ${result}`);
</script>
</body>
</html>

输出

正如我们看到的输出,已将 5 年添加到当前年份。

广告