DEV Community

Discussion on: Angular: How to build a full screen calendar like Outlook

Collapse
 
herrigor profile image
herrigor

This piece of code here is so cool

weekDays.push(days)
if (++index % chunkSize === 0) {
calendarDays.push(weekDays);
weekDays = [];
}

Collapse
 
rickystam profile image
Ricky Stam

Thank you herrigor, I hope you find it useful :)