Worked on 100DaysofCode

Day 28: I worked through the CSS Variables project from #JavaScript30 by Wes Bos. I then applied the skills I'd learned from the first 3 tutorials to my own projects.


I also completed functionality for the Revisiting Rock Paper Scissors Game from the Odin Project Foundations course (coming back to this after June 2nd). I initially struggled to figure out why the rounds of the game were continuing infinitely with a button press when I'd put a condition to end after a player scores 5 points. It turns out the event listeners will continue to be active unless otherwise stated. I'd made a call to a function that would end the game and remove the event listeners. The code now works as expected after that change.