Albert Blarer
Results
1
comments of
Albert Blarer
Same problem here: const monthDifference = dayjs("2023.03.04").diff(dayjs("2023.02.06"), "month"); Result: 0 Though, this does works: const monthDifference = dayjs("2023.03.04").get("month") - (dayjs("2023.02.06").get("month")); Result: 1