Skip to content
Advertisement

Get the next x days excluding weekends and show them all

I am having some difficulties display the next x number of days excluding weekends. The basic code is here which displays all days:

JavaScript

I cant then get it to do a continue:

JavaScript

But this obviously skips the weekends completely and I don’t get x returned days. I have tried reducing the number by 1 but just get timeouts so guessing this is not the way to go.

Advertisement

Answer

As CBroe already pointed out, use a variable for the number of days you want to iterate. When you get a saturday or sunday then increment that variable by one. E.g.

JavaScript

The output would always be $x weekdays, for today it would be

JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement