在 javascript 中工作我遇到了一个非常简单的问题,即如何使用 javascript 和 momentjs 获取每月的第一天和每月的最后一天。我知道在 vb 中应该是这样的:
Public Function LastDayOfMonth(ByVal current As DateTime) As DateTime
Dim daysInMonth As Integer = DateTime.DaysInMonth(current.Year, current.Month)
Return current.FirstDayOfMonth().AddDays(daysInMonth - 1)
End Function
Public Function FirstDayOfMonth(ByVal current As DateTime) As DateTime
Return current.AddDays(1 - current.Day)
End Function
我将如何将此代码移动到 javascript + momentjs?我认为图书馆没有类似的方法。
谢谢你。