Skip to content

Instantly share code, notes, and snippets.

View radiocity's full-sized avatar
🍌
Гитхаб? Убери от меня свой код, Гитхаб. Я не буду заниматься разработкой сегодня

Alexander A radiocity

🍌
Гитхаб? Убери от меня свой код, Гитхаб. Я не буду заниматься разработкой сегодня
  • Saint-Petersburg, Russia
View GitHub Profile
export default (startDate, endDate) => {
const result = [];
const currentDate = startDate;
while (currentDate <= endDate) {
const day = currentDate.getDay();
if (day !== 0 && day !== 6) {
result[result.length] = new Date(currentDate.getTime());
}
currentDate.setDate(currentDate.getDate() + 1);
}