Top 5 mistakes a beginner web developer does and what to do about it.

Common mistakes to correct for a beginner web developer.

When you begin web development it is common to make mistakes

Here are 5 common mistakes and what to practice to avoid it.

#1 CSS and JS files are not linked to HTML.

Practice: as soon as css and js files are created link them in the very next step.

#2 Variables names are incorrect, incomplete or not correctly written Capitals and small letters are mismatched.

Practice: Watch your variable names after you code.

#3 Syntax is missing. ; { > are most commonly ignored. Nested loops often are a target of such syntax mistakes.

Practice: Keep syntax handy and have a look at syntax closely.

#4 One part of program works but other part doesn't work. One part of logic is implemented well and other is not understood well.

Practice: Pay attention to what is not working and read different person's code. How everything works together needs more attention.

#5 Inputs are not thoroughly tested enough or never thought could be used for your program.

Practice: Required to think creatively what input can be used against your program.

Remember it is natural to make mistakes but important to learn from it. Practice and improve to master what is needed.