Search code examples
javascriptdatemomentjs

How to get yesterday's date with Momentjs?


So, my question is simple, how do I get yesterday's date with MomentJs ? In Javascript it is very simple, i.e.

today = new Date();
yesterday = new Date(today.setDate(today.getDate() - 1))

console.log(yesterday)

But how do I achieve this with MomentJs ?


Solution

  • Just like this: moment().subtract(1, 'days'). It will give you the previous day with the same exact current time that is on your local pc.