JavaScript 中的 Date.getFullYear() 方法用于检索指定日期的 “全年” (根据本地时间)。它不接受任何参数 insteead;它从 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 年。