Here in this post, I am going to tell you about the 10 common mistakes you will make or who knows you're still making as a beginner and will clear them all.

First Mistake

Bad Variable Names
let x = 0.4
// PURELY WRONG
The Correct way
let interestRate = 0.4
// CORRECT WAY

Second Mistake

Repetitive Code

Third Mistake

Not using comments
This will help you remember as your codebase grows larger.
It also makes it easier to navigate through your (messy ๐Ÿ˜‚) codes.
Once you've gotten experience start documenting your code properly.

Fourth Mistake

Overusing Frameworks
Most of the time, in the beginning, you can do your basic project with one framework.
Always remember: It's just a tool helping you solve the problem๐Ÿ‘Š.

Fifth Mistake

Not Using Version Control
Just backup your code to avoid frustration

Sixth Mistake

Complicated Code
Think about solving the problem simply and efficiently. Simple code is much easier to maintain and understand.

Seventh Mistake

Not Reaching Out For Help

Eighth Mistake

Have realistic expectations

Ninth Mistake

Overlearning
Watching is not equalled to learning. Get your hands dirty.

Tenth Mistake

Not Enjoying
This is important
Don't aim to become a developer because it'll pay well or there's "Scope". These are all by-products.
Get into coding because you want to build things and solve problems.
If you don't love what you do, you'll be never good at it.
If you find this article helpful just subscribe, react and comment.
THANKS FOR READING