But programming it is not just a way of giving instructions to a computer. It can also be a means of communication between humans, particularly in the context of team development, code reviews, and future maintenance of the software. Here are few points to keep in mind ...
Code Clarity
Code is more often read than it is written. Therefore, it is important to keep it clean and easily understood.
Code Consistency
Keeping your code consistent in terms of syntax, programming style and design patterns makes it easier to understand.
Documentation and Comments
Some code can become hard to understand despite our best effort. In these cases, comments and code documentation should be used to clarify the programmer's intent or communicate unintuitive information.