如何获得当年的月数(相对于当前日期)?

时间:2018-01-02 06:27:29

标签: javascript

到目前为止,我只知道如何获得当前年份:

const date = new Date()
const year = date.getFullYear() 
=> 2017 <- find how many months have passed in this year relative with the current date

我在Google上搜索过,我能找到的最接近的问题是同样的问题,但在PHP中。

(例如,今年只有1个月,因为我们在1月份。)

输出:

如果你今天1月02日运行代码,那么你会得到什么:

{ months: 1 }

1 个答案:

答案 0 :(得分:1)

  

发现今年过去了多少个月   当前日期

只需date.getMonths

var monthsElapsed = date.getMonth() + 1;