Calculate Number Of Days Between Two Dates Using Moment In Angular Code Example


Example 1: momentjs number of days between two dates

var given = moment("2018-03-10", "YYYY-MM-DD"); var current = moment().startOf('day');  //Difference in number of days moment.duration(given.diff(current)).asDays();

Example 2: moment check days of difference between days

var a = moment([2007, 0, 29]); var b = moment([2007, 0, 28]); a.diff(b, 'days')

Comments

Popular posts from this blog

Are Regular VACUUM ANALYZE Still Recommended Under 9.1?

Can Feynman Diagrams Be Used To Represent Any Perturbation Theory?