DEV Community

code-with-onye
code-with-onye

Posted on

Enum : A Fun Way to Improved Code Readability and Quality 🌟🌟🌟

Have you ever found yourself working on a project where you're constantly dealingπŸ˜₯ with a bunch of numerical constants that represent some concept or state in your code? If so, then you might have wished for a way to give these constants more meaningful names and make your code more readable and maintainable. Well, guess what? There's a way!🌝 It's called an enum, and it's a language construct in TypeScript that allows you to define a set of named constants.

Imagine you're working on a project for a fancy restaurant. Without enums, your code might look something like this:

function getMealStatus(status: number) {
  if (status === 0) {
    return 'Cooking';
  } else if (status === 1) {
    return 'Ready for pickup';
  } else if (status === 2) {
    return 'Delivered';
  } else {
    return 'Invalid';
  }
}

const mealStatus = getMealStatus(1);
console.log(mealStatus); // 'Ready for pickup'
Enter fullscreen mode Exit fullscreen mode

But with enums, your code can be much more descriptive and fun:

enum MealStatus {
  Cooking = 0,
  ReadyForPickup = 1,
  Delivered = 2,
  Invalid = 3
}

function getMealStatus(status: MealStatus) {
  switch (status) {
    case MealStatus.Cooking:
      return 'Our chefs are hard at work cooking up a delicious meal for you!';
    case MealStatus.ReadyForPickup:
      return 'Your meal is ready for pickup! Come by and get it while it's hot.';
    case MealStatus.Delivered:
      return 'Your meal has been delivered to your doorstep! Bon appΓ©tit!';
    default:
      return 'Something went wrong. Please try again.';
  }
}

const mealStatus = getMealStatus(MealStatus.ReadyForPickup);
console.log(mealStatus); // 'Your meal is ready for pickup! Come by and get it while it's hot.'
Enter fullscreen mode Exit fullscreen mode

Not only is this code more descriptive and easier to understand, it's also more fun to read and work with. And as an added bonus, enums can help catch mistakes at compile-time, saving you time and preventing bugs in your code.

So next time you're working with TypeScript, try using enums to add some fun and clarity to your code. Your fellow developers will thank you for the clear communication!

Follow me to learn more on Typescript
Enter fullscreen mode Exit fullscreen mode

Twitter LinkedIn

Latest comments (0)