10 Naming Convention Principles Every Developer Should Know

Unlock the secrets to clean, readable code with these 10 essential naming convention principles. Perfect for fresh grads looking to elevate their coding skills!

As you embark on your software development journey, one of the most crucial skills you’ll need to master is naming conventions. You might think, “What’s in a name?” but in programming, names carry the weight of your code’s readability, maintainability, and clarity. It’s like telling a story—if your characters (variables, functions, classes) have confusing or misleading names, the plot (your code) becomes hard to follow.

Naming conventions are more than just rules—they’re principles that help you write clean, understandable, and maintainable code. Let’s dive into these principles, armed with plenty of examples and explanations to guide you through.

1. Be Descriptive and Unambiguous

Imagine you’re trying to understand a piece of code, and you come across a variable named x. What could it be? Is it a counter, a coordinate, or something else entirely? Compare that to a variable named userAge—you immediately know what it represents.

Example:

// Poor naming
let x = 30;

// Better naming
let userAge = 30;

Explanation: The first example uses x, which doesn’t convey any information about its purpose. The second example, userAge, is self-explanatory and immediately clear to anyone reading the code. Descriptive names make your code easier to read and understand, especially when you revisit it after some time.

Next time you write a variable name, ask yourself—could someone unfamiliar with your code understand its purpose just by the name?

2. Use Pronounceable Names

Your code will often be discussed aloud during meetings, code reviews, or pair programming sessions. Using pronounceable names makes these discussions smoother and more efficient.

Example:

// Poor naming
let dtRng = "2023-08-12";

// Better naming
let dateRange = "2023-08-12";

Explanation: The first example, dtRng, is a bit of a tongue-twister and can cause confusion when spoken aloud. On the other hand, dateRange is clear and easy to pronounce, making verbal communication more straightforward.

Try saying your variable names out loud. If they sound awkward or confusing, consider renaming them!

3. Be Consistent with Your Naming Conventions

Consistency in naming conventions is vital for maintaining a clean codebase. If you decide to use camelCase for your variables, stick with it throughout your code.

Example:

// Poor naming (mixes camelCase and snake_case)
let userAge = 30;
let user_name = "Alice";

// Better naming (consistent camelCase)
let userAge = 30;
let userName = "Alice";

Explanation: The first example uses both camelCase and snake_case, which can be confusing and make the codebase feel disjointed. The second example consistently uses camelCase, creating a uniform look that’s easier to read and maintain.

Pick a naming convention style and apply it consistently across your projects. This small habit can make a big difference in how your code is perceived by others.

4. Avoid Using Magic Numbers and Strings

Magic numbers and strings are hard-coded values that appear in your code without explanation. They can make your code cryptic and difficult to maintain. Instead, use descriptive names to represent these values.

Example:

// Poor naming (magic number)
let discount = price * 0.05;

// Better naming
const DISCOUNT_RATE = 0.05;
let discount = price * DISCOUNT_RATE;

Explanation: The first example uses 0.05 directly in the calculation, which might leave others wondering what this number represents. The second example defines DISCOUNT_RATE, making the code self-explanatory and easier to modify in the future.

Always replace magic numbers and strings with named constants. This practice not only clarifies your code but also centralizes the management of these values.

5. Use Nouns for Variables and Classes, Verbs for Functions

This principle is straightforward but often overlooked. Variables and classes represent things, so they should be named with nouns. Functions, on the other hand, perform actions, so they should be named with verbs.

Example:

// Poor naming
let calculate = 5 * 5;

function ageUser() {
    // ...
}

// Better naming
let area = 5 * 5;

function calculateUserAge() {
    // ...
}

Explanation: In the first example, calculate is a noun that sounds like it should be a function. Similarly, ageUser is a verb that doesn’t clearly convey its purpose. The improved version uses area as a variable name (a noun) and calculateUserAge as a function name (a verb), following the natural conventions of language.

Before naming a function or variable, think about its role—does it represent a thing or an action? This will guide you to the appropriate naming convention.

6. Avoid Single-Letter Variables (Except in Loops)

Single-letter variables like i, j, or x are common in loops, but outside of these contexts, they can make your code hard to understand.

Example:

// Poor naming
let a = 100;
let b = 200;

// Better naming
let width = 100;
let height = 200;

Explanation: The first example uses a and b, which are vague and offer no insight into their purpose. The second example names the variables width and height, which are clear and descriptive.

Reserve single-letter variables for loop counters or when the context is immediately obvious. Otherwise, opt for more descriptive names.

7. Avoid Using Abbreviations

While abbreviations might save you a few keystrokes, they often lead to confusion and misinterpretation. It’s better to use full, descriptive names that leave no room for ambiguity.

Example:

// Poor naming
let usrInfo = {
    nm: "John",
    eml: "john@example.com"
};

// Better naming
let userInfo = {
    name: "John",
    email: "john@example.com"
};

Explanation: The first example uses abbreviations like usr, nm, and eml, which might confuse others who are reading the code. The second example spells out the names fully, making the code much easier to understand.

Think of future you or your teammates—will they understand what your abbreviations mean a year from now? If in doubt, spell it out!

8. Indicate Scope and Intent with Prefixes

Using prefixes can help indicate the scope and intent of your variables. For example, you might prefix a variable with is to indicate a boolean, or temp to indicate a temporary value.

Example:

// Poor naming
let open = true;
let age = 25;

// Better naming
let isOpen = true;
let userAge = 25;

Explanation: The first example names the variables open and age, which don’t provide context about their type or purpose. The second example uses prefixes—isOpen to indicate a boolean and userAge to provide more context.

Prefixes are a simple way to make your code more self-explanatory. Experiment with different prefixes to see how they can improve your code’s clarity.

9. Avoid Negatives in Boolean Names

Using negative words in boolean names can make your code harder to understand. It’s generally clearer to name booleans in a way that reflects a positive condition.

Example:

// Poor naming
let isNotActive = false;

// Better naming
let isActive = true;

Explanation: The first example uses a double negative—isNotActive = false—which can be confusing to reason about. The second example simplifies this to isActive, which is easier to understand at a glance.

Whenever possible, avoid using negative words in your boolean names. Positive naming leads to more intuitive and readable code.

10. Refactor Names as the Code Evolves

Code evolves over time, and so should your names. What made sense initially might become less clear as the codebase grows. Don’t hesitate to refactor names to better reflect their current purpose.

Example:

// Original naming
let temp = calculateDiscount(price);

// After refactoring
let discountedPrice = calculateDiscount(price);

Explanation: The first example names the variable temp, which might have been fine initially. However, as the codebase grew, it became clear that discountedPrice is a more appropriate name, reflecting its true purpose.

Regularly revisit and refactor your code. If a name no longer fits its purpose, change it! This practice keeps your codebase clean and understandable.


Final Thoughts

Naming conventions might seem like a small detail, but they have a significant impact on the readability and maintainability of your code. By following these principles, you’ll write code that’s not only easier to understand but also easier to work on as part of a team.

Remember, these principles aren’t just rules—they’re tools to help you communicate your ideas through code more effectively. And as you grow as a developer, you’ll find that the

Subscribe to JS Dev Journal

Don’t miss out on the latest issues. Sign up now to get access to the library of members-only issues.
jamie@example.com
Subscribe