Day 20 of 21 Days of Javascript
I spent some time today trying to understand in more detail how Javascript works with web pages. I'm doing this through a mini project: a barebones to-do list app. Since I'm focussed on Javascript, I've asked ChatGPT to provide the style sheet to make the app look less bare bones. (I continue to write the Javascript code myself.)

The only functionality right now is the ability to add new tasks. In the screenshot above and to the right, you can see a console print out of the storage structure I'm using. It's an array of ToDo objects. Each instance of a ToDo object has a unique id, text, and status of whether the task is done.
By tomorrow (Day 21), I'd like to have completed the javascript code that enables the ability to mark tasks as done, as well as the ability to delete items. That will mark the end of my 21 Day project.