Is It Normal to Look Up Basic Coding Syntax?

0
6
Asked By MellowPine42 On

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

Answered By CopperHawk7 On

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.

MellowPine42 -

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

Answered By BrightOtter63 On

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.

Answered By QuietMaple_18 On

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.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.