Some Very Common Mistakes to avoid when coding.

Some Very Common Mistakes to avoid when coding.

ยท

2 min read

Mistake 1.

Bad Variable Names

Variables are essential in programming. Use them as they are intended. It will not make your life easier but also make it easier for people to help you.

Like....

let amount = 3000;

And not

let x = 3000;

Mistake 2.

Commenting Your Code

Always Adopt the habit of writing comments whenever you create a new function or define logic within your code.
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.

Mistake 3.

Version Control

Get yourself used to version control like Git, Github, Svn,Bitbucket or whatever you want. Just try to backup code always to avoid errors and frustration.

Mistake 4.

Be realistic

You can't create an app in a day or 2, Start small. Build a few simple projects. Build good habits before trying to move mountains.

Mistake 5.

Search For Help

Always search for help whenever you get stucked at some point in time. You're surely going to get stuck and everyone experience that. Try yourself first. Search for it on google (You'll find most probably on StackOverflow) If you can't find the solution use social media as a tool and ask a question, the amazing developer community on various social media like Twitter loves to help.

Lastly, Don't aim to become a developer because there is a lot of money in it. This is just a 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.

You can as well follow me here on twitter

Hope you enjoy it, Bye ๐Ÿ‘‹ for now.