Answers for "how to find the difference from date in the past to current time moment jsusing .tonow"

4

moment date difference in days

moment(new Date()).diff(moment(new Date()), 'days') // 0
Posted by: Guest on March-02-2021
0

moment js difference between two dates

var admission = moment('{date1}', 'DD-MM-YYYY'); 
var discharge = moment('{date2}', 'DD-MM-YYYY');
discharge.diff(admission, 'days');
Posted by: Guest on February-24-2021

Code answers related to "how to find the difference from date in the past to current time moment jsusing .tonow"

Code answers related to "Javascript"

Browse Popular Code Answers by Language