Another Project
"Etch-A-Sketch" The next project I got to work on was called an Etch-A-Sketch by The Odin Project (but is is more like a little drawing application). You can check it out here . It was a pretty fun project and had a few layers to work through--from allowing the user's pointer to make the "pixels" that were drawn change color to also allowing the user change how many "pixels" they get to work with. Abstraction One thing that held me up for a little bit while working on this project was figuring out how to understand more abstract methods of working with the various elements in my little program. I had to figure out how to grab each individual "pixel" without being able to use the methods that I had used before. Part of this was just overthinking how some parts of my code was working. For example, JavaScript has this method called " forEach() ". It cycles through each element in an Array (or node list in my case). It really is that ...