Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,880 questions

51,806 answers

573 users

How to calculate the number of days between two dates in Node.js

2 Answers

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

 



answered Jun 12, 2022 by avibootz
0 votes
function getDaysBetween2Dates(startDate, endDate) {
    const milliseconInADay = 24 * 60 * 60 * 1000;
 
    return Math.round(Math.abs(endDate - startDate) / milliseconInADay);
}
 
console.log(getDaysBetween2Dates(new Date('2022-04-03'), new Date('2022-04-11')));
 
   
   
   
   
/*
run:
   
8
   
*/

 



answered Nov 8, 2023 by avibootz

Related questions

...