How to get total no. of days excluding fri and sat between two dates in JavaScript? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How to get total no. of days excluding fri and sat between two dates in JavaScript?

I have two dates and I want to show total days between these two dates excluding holidays

24th Feb 2017, 9:51 PM
Salman Mushtaq
Salman Mushtaq - avatar
1 Answer
+ 1
var diff = (d2.getTime() - d1.getTime()) / (24 * 60 60 * 1000); var result = diff - parseInt(diff * 2 / 7) //this work with more than 7 days. if You want to test less, You have to use date.getDay() to know if is a fri or sat. date.getDay() starts with 0 and sunday //diff*2 is because there are two days of holiday on week
25th Feb 2017, 4:04 AM
cuarti
cuarti - avatar