使用 JavaScript 获取当前年份

在 JavaScript 中获取当前年份

Get the Current Year using JavaScript

要在 JavaScript 中获取当前年份,请调用new Date()构造函数以获取日期对象并对getFullYear()结果调用方法,例如
new Date().getFullYear(). getFullYear方法将返回一个对应于当前年份的数字。

索引.js
// 👇️ Get current Year const currentYear = new Date().getFullYear(); console.log(currentYear); // 👇️ Get year of specific date const date = new Date('January 04, 2025 05:24:07'); const yearOfDate = date.getFullYear(); // 👉️ 2025

我们使用
Date() 构造函数
来获取一个
Date对象,我们可以在该对象上调用各种方法。

对于我们的用例,我们调用了
Date.getFullYear
方法,它返回一个数字,表示对应于当前日期的年份。

对象上的其他常用方法Date是:

  • Date.getMonth0 – 返回一个介于(January) 和(December)之间的整数11,代表给定日期的月份。是的,不幸的是该getMonth方法已关闭1
  • Date.getDate – 返回特定日期的月中日期

这些方法允许您获取任何日期对象的年/月/日,不一定是当前年份。

您所要做的就是将特定日期传递到Date调用方法的构造函数中。

索引.js
const date = new Date('December 24, 2025 05:24:07'); const yearOfDate = date.getFullYear(); // 👉️ 2025 const monthOfDate = date.getMonth() + 1; // 12 const dayOfMonth = date.getDate(); // 24

进一步阅读

发表评论