Skip to content
Advertisement

How can I subtract 1 month using moment.js?

I want to subtract 1 month from a given date in (DD/MM/YYYY) format, but when I do that using moment.js, it gives me the result as 01/12/2020. How can I resolve this? Basically when I click on the left-arrow, the month should be subtracted by 1 every

enter image description here

JavaScript

Advertisement

Answer

How can I subtract one month using moment.js?

tl,dr;

JavaScript

initial answer:

Here’s a basic example.

It stores the date as a moment object, which you then modify by adding or subtracting a month without ever caring what its current value is. You could also store it as a JavaScript Date object, which is useful when you have to communicate it to an external entity (a db, the browser, etc…).

Take away points:

  • the date is not stored as text
  • the mods to the date are minimal
  • the date is parsed to text in only one place: before updating DOM (in setDate function)

JavaScript
JavaScript
JavaScript

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement