Events calendar

Description
The events calendar is an open-source project designed to facilitate the visualization of digital events on a web-based calendar.
Details
Technologies | NodeJS, Gulp, PostCSS, Browsersync, HTML, SCSS, Javascript |
---|---|
Features | Initialization of calendar's class from javascript, options, methods |
Date | May 2023 |
Link | https://zakandaiev.github.io/events-calendar |
Github | https://github.com/zakandaiev/events-calendar |
Code snippets
js Get day of week
function getWeekday(date) {
let day = date.getDay();
if(day == 0) day = 7;
return day - 1;
}
getWeekday(new Date('2023-06-02')) // returns: 4
// 0 - monday
// 1 - tuesday
// 2 - wednesday
// 3 - thursday
// 4 - friday
// 5 - saturday
// 6 - sunday