I've been learning web development and have covered a good amount of HTML and CSS. Now I'm working through JavaScript, with plans to move on to C++ afterward. I sometimes look up syntax or examples for things I've forgotten, including CSS techniques such as glassmorphism. Is this a normal part of learning, or should I be trying to memorize more of the details?
3 Answers
That’s completely normal. Even experienced developers regularly look up syntax, APIs, and small implementation details. The important part is understanding what you’re trying to build and being able to find and evaluate the right information.
Keep your own projects and notes as a reference. Looking at code you wrote before can be faster and more useful than starting from scratch. Search results and documentation are normal tools, and even senior developers use them constantly. Also, a visual style like glassmorphism isn’t necessarily a basic feature—you’d reasonably look up a CSS example and adapt it.
Programming is much more about problem-solving than memorizing every character of syntax. Languages also differ from one another, so it’s easy to mix up details between JavaScript, Python, Ruby, C++, and others. With practice, common patterns become more familiar, but looking things up never really stops.

Thanks! I guess I don’t need to treat programming like I’m supposed to remember absolutely everything.