В
Size: a a a
p
PD
D
OJ
ВЛ
᠌
k🥔
// maxDate = Sun Jan 31 2021 00:00:00 GMT+0200 (Eastern European Standard
// Time)
// res = [
// Sat Jan 30 2021 00:00:00 GMT+0200 (Eastern European Standard Time),
// Sun Jan 31 2021 00:00:00 GMT+0200 (Eastern European Standard Time)
// ]
let i = new Date();
i.setHours(0, 0, 0, 0);
while (i <= maxDate) {
if (!res.includes(i)) {
disabled.push(i);
}
i.setDate(i.getDate() + 1);
}
t
t
t
t