How to calculate the number of days between two dates in TypeScript

1 Answer

0 votes
function days_difference(startDate : any, endDate : any) {
	const oneDay = 24 * 60 * 60 * 1000; // hours * minutes * seconds * milliseconds
    
    return Math.round((endDate - startDate) / oneDay);
}
 
 
const dt1 = new Date('11/04/2022')
 
const dt2 = new Date('11/09/2022')
 
console.log(days_difference(dt1, dt2));
 
 
 
 
/*
run:
       
5
     
*/

 



answered Jun 12, 2022 by avibootz

Related questions

...