In most cases, you aren’t the only person working on the same project or codebase. That means that other people get to read your code and have to understand it.
That’s also true for the code comments you leave behind. Developers often write ‘quick and dirty’ comments without much context, leaving other developers clueless about what you’re trying to say. It’s a bad practice that creates only more confusion than clarifies things.
So, yes - you should be bothered with writing meaningful code comments to help other developers. A code comment that describes:
Will speed up the learning process of other developers.
On the other hand, here’s a significant group of developers that advocate against writing code comments. The reason is that code should be self-explanatory. If another developer can’t understand the purpose of your code by looking at it, it’s bad code.
But think about the little effort code commenting requires and the potential benefits it returns.
We know the 5 best ways to make your code comments even more useful and easy to write, let’s take a look!
1. Documentation comments - The main purpose of these comments is to quickly clarify the purpose of a file or component. Instead of reading a component’s entire code to understand what it does, you can include a code comment at the top of your `index` file to explain what the component does.
I’m not a big fan of this type of code commenting because they make your code very noisy. I think that these types of architecture comments should live within your internal documentation where you can maintain and discuss your project’s architecture in a centralised location. Yet, for Open Source projects, it does bring value to guide people who want to contribute to the project.
2. Function comments - Function comments are the most useful type of comments and can be automatically generated in many languages. They describe the purpose of the function, which parameters it accepts, and what output it generates. It’s often sufficient to describe only public functions because developers using your code won’t interact with private functions.
3. Logic comments - Logic comments are comments within functions to clarify complex code paths. As you could have guessed, it’s an evident code smell or technical debt indicating that your code is far too complex.
On top of that, logic comments often provide too much detailed information. The level of detail will create more chaos and decrease the readability of your code. Here’s an example of a code comment that’s too detailed.
Here’s a list of four best practices for code commenting.
Many programming languages define standards for code commenting. Java uses Javadoc, while JavaScript uses the JSDoc code commenting system that’s supported by many documentation generation tools.
For functions, you should include the following code tags:
Here’s an example from the Lodash code for the `chunk` function.
Engineers spend most of their time in the editor. If you want to make your code comments and issues useful and easy to create and find, add them where you're spending most of your time - in the editor.
The easiest way to do it is to use free Stepsize VSCode and JetBrains extensions that will help you create codebase issues, comments, and better TODOs.
Since developers don’t have to switch between the tools to write code comments and issues in the editor, they are much more likely to do it.
As a result, your Engineering team will have a rich context on all the codebase issues and resolve them more frequently.
Many developers use a comment to describe what their code is doing. This is not necessarily wrong. However, don’t forget to include why you have created a particular function or component. This information is called context. The context is essential to give developers more insights into the design decisions behind a function or component. This context is crucial when other developers want to make changes against your function or component.
You often see code comments that use the function name in the function description. As you could have guessed, such a comment doesn’t add value. Context refers to adding information that you can’t extract from the function name or its input variables. Below you see a bad example of code commenting without context.
It’s not a good idea to refer to other code comments or internal documents that clarify a function or component. If a developer wants to scan code to get a better understanding quickly, the code comments should be clear.
You don’t want to spend time searching for other code comments or reading extensive design documents. If you think you need to add a document to clarify a code’s purpose, it’s a red flag for bad code.
Writing comments while writing code might sound obvious, yet many developers cheat against this rule. I’ve been guilty of this myself. In some situations, I’ve completed my code before writing any code comments to submit my pull request for review.
You might forget part of the logic you wrote in this situation, leading to lower quality code comments. It’s especially true if you work multiple days on a single pull request. It’s best to write comments when you complete a function or module. Again, this is easy with the help of the Stepsize editor extensions.
If you care about code quality, take time to write meaningful code comments. It takes some practice but can be quickly learned. The key concept to remember is adding context to your code comments. Describe the why behind the code you’ve created, not only the apparent information. Developers don’t need the ‘what’ because they can read your code, input parameters, and output to better understand the code.
Remember to keep your code comments as concise as possible. You don’t want to spend more time writing code comments than writing code.