On testing the not selector further, the following seems to works just fine.
const noHoliday = document.querySelectorAll(
"article.commonclass:not(.holidayclass,.holidayclass2)"
);
console.log(noHoliday);
On testing the not selector further, the following seems to works just fine.
const noHoliday = document.querySelectorAll(
"article.commonclass:not(.holidayclass,.holidayclass2)"
);
console.log(noHoliday);