How to get yesterday's date with Momentjs?

后端 未结 8 943
清酒与你
清酒与你 2021-01-30 08:08

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.se         


        
8条回答
  •  天涯浪人
    2021-01-30 08:23

    When we get yesterday's date, there are three possibilties

    1. Get yesterday date with current timing

    moment().subtract(1, 'days').toString()
    

    2. Get yesterday date with start of the day

    moment().subtract(1, 'days').startOf('day').toString()      
    

    3. Get yesterday date with end of the day

    moment().subtract(1, 'days').endOf('day').toString()
    

提交回复
热议问题