DEV Community

Cover image for How to Use /*Comment*/ as a developer
Scofield Idehen
Scofield Idehen

Posted on • Originally published at blog.learnhub.africa

How to Use /*Comment*/ as a developer

As a developer, writing clean, well-documented code is essential to creating maintainable and scalable applications. This article will dive into the importance of documenting and commenting on your code and provide tips and best practices to help you get started.

Why Document and Comment Your Code?

Writing code is just the first step in creating a software application. To ensure that others, including yourself, can understand and maintain the code in the future, it's important to document and comment on your code. Here are some of the benefits of doing so:

Improving code readability: By providing clear, concise explanations of your code, you make it easier for others to understand and maintain it.

Facilitating collaboration: When working on a team, documenting and commenting on your code helps ensure everyone is on the same page and working towards the same goal.

Simplifying debugging and troubleshooting: If you encounter a bug or need to troubleshoot an issue, having clear documentation and comments can save you time and effort by quickly guiding you to the root cause of the problem.

Improving code documentation: Documenting your code helps maintain an up-to-date and accurate overview of your codebase, making it easier to understand and use.
How to Document and Comment Your Code

Now that we've discussed the importance of documenting and commenting on your code let's look at how to do it effectively. Here are some tips to get you started:

Write clear and concise comments: Avoid lengthy or unnecessary comments, as they can make your code more difficult to read. Instead, focus on writing clear, concise explanations of your code, and use comments to provide context and describe essential details.

Example:

// This function calculates the sum of two numbers
function add(a, b) {
  return a + b;
}
Enter fullscreen mode Exit fullscreen mode

Use descriptive variable and function names: One of the simplest and most effective ways to improve the readability of your code is to use descriptive names for variables and functions.This makes it easier to understand what the code is doing without digging into each line's details.

Example:

// Good
function calculateTotalAmount(subtotal, tax) {
  return subtotal + tax;
}
 
// Bad
function calc(a, b) {
  return a + b;
}
Enter fullscreen mode Exit fullscreen mode

Document your code with JSDoc or a similar tool: JSDoc is widely used for documenting JavaScript code. It provides a standardized way to add documentation and comments to your code, making it easier to understand and maintain.

Example:

/**
 * Calculates the sum of two numbers
 * @param {number} a - The first number
 * @param {number} b - The second number
 * @returns {number} The sum of the two numbers
 */
function add(a, b) {
  return a + b;
}
Enter fullscreen mode Exit fullscreen mode

Keep your comments up-to-date: As your code evolves and changes, it's important to keep your comments and documentation up-to-date. This helps ensure that your code remains accurate and relevant, even as new features and updates are added.

Be consistent in your commenting style: Developing a consistent style will make it easier for others to understand your code. Whether you prefer to use inline comments, block comments or a combination of both, make sure you use the same style throughout your code.Here's an example of a consistent commenting style using inline comments.

// This function calculates the sum of two numbers
function sum(a, b) {
  return a + b;
}
 
// This function calculates the difference between two numbers
function difference(a, b) {
  return a - b;
}
Enter fullscreen mode Exit fullscreen mode

In this example, you can see that both functions have inline comments that explain what they do. This makes it easy for anyone reading the code to understand its purpose.

Additionally, using the same style of inline comments throughout the code makes it easier to spot comments and understand the code at a glance.

You can also use block comments to provide more detailed explanations or add context to a code section. Here's another example:

/*
 * This section of code handles user authentication.
 * It includes functions for login, logout and signup.
 */
 
// Login function
function login(username, password) {
  // Code for user authentication goes here
}
 
// Logout function
function logout() {
  // Code for logging out a user goes here
}
 
// Signup function
function signup(username, email, password) {
  // Code for creating a new user account goes here
}
Enter fullscreen mode Exit fullscreen mode

In this example, a block comment at the start of the code provides a general explanation of what the section is about. This helps to provide context for the following functions and makes it easier to understand the code at a higher level.

Document important code blocks: Documenting important ones is a great way to help others understand how your code works. Use comments to explain the purpose of a particular code block, what it does and how it works.

Here is an example of documenting important code blocks:

// Define a function to calculate the sum of two numbers
function add(a, b) {
  // declare a variable to store the result
  let result = a + b;
 
  // return the result
  return result;
}
Enter fullscreen mode Exit fullscreen mode

In this example, the purpose of the function add is explained through a comment, as well as what it does (calculating the sum of two numbers) and how it works (declaring a variable to store the result and returning it).

By documenting essential code blocks in this way, others who read your code will clearly understand its purpose and how it works.

Use comments to explain why, not what: Finally, it's important to remember that comments should explain why the code is doing what it's doing, not what it's doing. This helps you communicate your thought process, provides context to your code and makes it easier for others to understand and work with it.Consider the following code block:

// Check if user is authorized to access the page
if (user.isAuthorized) {
  // Show the page content
  showPageContent();
} else {
  // Redirect user to login page
  redirectToLogin();
}
Enter fullscreen mode Exit fullscreen mode

In this example, the comments explain why specific actions are taken in the code rather than what the code is doing. The comment Check if user is authorized to access the page explains the purpose of the if statement, while the comments Show the page content and Redirect user to login page to explain why the respective actions are taken.

This type of commenting helps provide context to the code, making it easier for others to understand and work with. It also helps make the code self-documenting, reducing the need for external documentation.

Refactor your comments regularly: As your code evolves, so should your comments. Regularly refactor your comments to make sure they remain relevant and up-to-date. This will make it easier for you and others to understand your code in the future.

Conclusion

In conclusion, writing clean and well-documented code is essential to software development.

It makes the code easier to understand for others and yourself when you revisit it after a long time.

Adopting good commenting practices, such as being consistent in your style, documenting important code blocks, and explaining why the code is written the way it is, will make your code more readable and maintainable. So, take the time to comment on your code and make it reader-friendly!.

Check out the following articles How to write clean codes as a developer and AI tools to increase the productivity of web developers.

Top comments (0)