Moment.js: Date between dates

后端 未结 8 1499
庸人自扰
庸人自扰 2020-11-27 11:18

I\'m trying to detect with Moment.js if a given date is between two dates. Since version 2.0.0, Tim added isBefore() and isAfter() for date compari

8条回答
  •  清酒与你
    2020-11-27 11:57

    As Per documentation of moment js,

    There is Precise Range plugin, written by Rob Dawson, can be used to display exact, human-readable representations of date/time ranges, url :http://codebox.org.uk/pages/moment-date-range-plugin

    moment("2014-01-01 12:00:00").preciseDiff("2015-03-04 16:05:06");
    // 1 year 2 months 3 days 4 hours 5 minutes 6 seconds
    
    moment.preciseDiff("2014-01-01 12:00:00", "2014-04-20 12:00:00");
    // 3 months 19 days
    

提交回复
热议问题