DEV Community

Cover image for TypeScript Enums: Simplifying Code and Enhancing Readability
Fabien Schlegel
Fabien Schlegel

Posted on • Originally published at devoreur2code.com

TypeScript Enums: Simplifying Code and Enhancing Readability

In TypeScript, Enums provide a convenient way to define a set of named constants. They offer improved code clarity, readability, and type safety by associating a set of named values with a specific type. This article aims to explore the concept of TypeScript enums, their syntax, benefits, usage, and best practices.

Understanding Enums

What are Enums?

Enums, short for enumerations, are a feature in TypeScript that allows developers to define a collection of related values under a single name. They provide a simple and intuitive way to work with predefined sets of values, making code more expressive and self-explanatory.

Enum Syntax

To define an enum in TypeScript, you use the enum keyword followed by the enum's name and a set of member values enclosed in curly braces. Each member value is assigned an implicit numeric value, starting from 0 and incremented by 1 for each subsequent member.

Example:

enum Weekday {
  Monday,
  Tuesday,
  Wednesday,
  Thursday,
  Friday,
  Saturday,
  Sunday,
}
Enter fullscreen mode Exit fullscreen mode

Enum Values

By default, enum values are represented by numbers. You can access these values by using the enum member's name.

Example:

console.log(Weekday.Monday); // Output: 0
console.log(Weekday.Tuesday); // Output: 1
Enter fullscreen mode Exit fullscreen mode

Enum with String Values

Enums can also be defined with string values instead of numeric values. By explicitly assigning string values to enum members, you can have more control over the values associated with each member.

Example:

enum Direction {
  Up = 'UP',
  Down = 'DOWN',
  Left = 'LEFT',
  Right = 'RIGHT',
}
Enter fullscreen mode Exit fullscreen mode

Benefits of Using Enums

Code Clarity and Readability

Enums enhance code clarity by providing descriptive names to represent values. Instead of using magic numbers or string literals throughout the code, enums offer self-explanatory symbols that make the code easier to understand and

maintain.

Example:

let currentDay: Weekday = Weekday.Monday;

if (currentDay === Weekday.Monday) {
  console.log("It's Monday!");
}
Enter fullscreen mode Exit fullscreen mode

Type Safety and Autocompletion

TypeScript enums provide type safety by ensuring that only valid enum values are used. The compiler performs static checks to prevent assigning incorrect or nonexistent values to enum variables. IDEs can also provide autocompletion and suggestions based on enum values, making development more efficient and error-resistant.

Example:

function printDirection(direction: Direction) {
  console.log('Current direction:', direction);
}

printDirection(Direction.Up); // Output: Current direction: UP
printDirection(Direction.Left); // Output: Current direction: LEFT
Enter fullscreen mode Exit fullscreen mode

Enum as a Union Type

Enums can be used as part of a union type, allowing variables to accept either enum values or other compatible types. This flexibility enables developers to create more expressive type definitions and handle various scenarios in their codebase.

Example:

type Result = 'Success' | 'Failure' | Direction;

function handleResult(result: Result) {
  if (result === Direction.Up) {
    console.log('Going up!');
  } else if (result === 'Success') {
    console.log('Operation successful!');
  }
}

handleResult(Direction.Up); // Output: Going up!
handleResult('Success'); // Output: Operation successful!
Enter fullscreen mode Exit fullscreen mode

Enum Iteration

Enums in TypeScript are iterable, which means you can easily iterate over all the enum values. This feature is particularly useful when you need to perform operations on all possible enum members, such as generating a dropdown list or validating user input.

Example:

enum Month {
  January,
  February,
  March,
  // ... rest of the months
}

for (let month in Month) {
  console.log(Month[month]);
}
Enter fullscreen mode Exit fullscreen mode

Working with Enums

Declaring Enums

To declare an enum, you simply define it using the enum keyword followed by the enum's name and member values.

Example:

enum Color {
  Red,
  Green,
  Blue,
}
Enter fullscreen mode Exit fullscreen mode

Assigning Values to Enums

By default, enums are assigned numeric values starting from 0. However, you can assign specific values to enum members explicitly.

Example:

enum StatusCode {
  OK = 200,
  BadRequest = 400,
  Unauthorized = 401,
  // ... rest of the status codes
}
Enter fullscreen mode Exit fullscreen mode

Accessing Enum Values

To access the values of an enum, you can use either the enum member's name or its associated value.

Example:

console.log(StatusCode.OK); // Output: 200
console.log(StatusCode[200]); // Output: OK
Enter fullscreen mode Exit fullscreen mode

Enum Operations

Enums in TypeScript support several operations, such as checking if a value is part of the enum, obtaining the keys or values of an enum, or converting between enum values and their string representations.

Example:

enum Size {
  Small,
  Medium,
  Large,
}

console.log(Size.hasOwnProperty('Medium')); // Output: true
console.log(Object.keys(Size)); // Output: ["0", "1", "2"]
console.log(Object.values(Size)); // Output: [0, 1, 2]
Enter fullscreen mode Exit fullscreen mode

Best Practices

Naming Conventions

When naming enums, it is recommended to use singular nouns or noun phrases that describe the collection of values the enum represents. The names should be concise, meaningful, and follow consistent conventions throughout the codebase

.

Example:

enum UserRole {
  Admin,
  Editor,
  Viewer,
}
Enter fullscreen mode Exit fullscreen mode

Enum Composition

Instead of creating large enums with a vast number of members, consider composing smaller enums and combining them when necessary. This approach promotes code modularity, reusability, and better organization.

Example:

enum AnimalType {
  Dog,
  Cat,
  // ... other animal types
}

enum VehicleType {
  Car,
  Motorcycle,
  // ... other vehicle types
}

type TransportType = AnimalType | VehicleType;
Enter fullscreen mode Exit fullscreen mode

Using Enums in Functions and Interfaces

Enums can be used as function parameters or return types to ensure type safety and clarity. They can also be incorporated into interfaces to define specific property values, providing a contract-like structure for working with enum-related data.

Example:

interface User {
  id: number;
  name: string;
  role: UserRole;
}

function getUserRole(user: User): UserRole {
  return user.role;
}
Enter fullscreen mode Exit fullscreen mode

Conclusion

TypeScript enums are a powerful feature that simplifies code, enhances readability, and improves type safety. By using enums, developers can define named constants, avoid magic values, and write more expressive code. Understanding how to declare, assign values, and utilize enums effectively can greatly benefit TypeScript projects.

Top comments (2)

Collapse
 
mbarzda profile image
Martynas Barzda

enum is still not supported in ECMAScript and {...} as const is viable option to be aligned with JS typescriptlang.org/docs/handbook/e...

Collapse
 
tylim88 profile image
Acid Coder

for the love of gods, do not use enum