Coding A Calendar App In Plain JavaScript
Video Statistics and Information
Channel: PortEXE
Views: 19,137
Rating: undefined out of 5
Keywords: javascript tutorial, plain javascript tutorial, vanilla javascript, vanilla javascript tutorial, plain javascript, no framework, javascript without frameworks, javascript calendar, calendar app in javascript, code a calendar, calendar tutorial
Id: m9OSBJaQTlM
Channel Id: undefined
Length: 63min 46sec (3826 seconds)
Published: Wed Jan 27 2021
Please note that this website is currently a work in progress! Lots of interesting data and statistics to come.
Here's another way of getting just the localized Day of the Week as a string:
new Date().toLocaleString(window.navigator.language || "us-EN", { weekday: "long", });
Just a thought, you could have done event delegation for the days instead of having each day have itβs own event handler. Otherwise really enjoyed the video.
So are we saving locally (with a cookie) or online (with a database). NOTE: if you know what you are doing, making simple apps that store data online is super easy.