How To Convert A TypeScript Enum To A JavaScript Array Or String

Β·

4 min read

Converting a TypeScript Enum to a JavaScript Array is pretty easy, and I often use it to fill a <select> with all the values from that enum.

In this post, I love to show you how you can subtract the data from the enum and remodel it into a JavaScript Array of Strings so you can use it for whatever you like. Next, we create a generic utility function for it so that you can reuse it across your application.

Originally published on byrayray.dev

divider-byrayray.png

What Are TypeScript Enums?

Yes, I know you are searching for a solution for turning your enum into a JavaScript Array. But do you know there are multiple ways to create an enum?

1. Numeric TypeScript Enum

The numeric enum is the most commonly used in TypeScript. You can create a numeric enum like this. (Since I love πŸ• we make a PizzaToppings enum.)

enum PizzaToppings {
  TOMATO, // value = 0
  BBQ, // value = 1
  NONE, // value = 2
  CREAM // value = 3
}

The first key in the enum gets the value 0, the second value 1, and so on. You don't have to do anything about that. But if you want to change it, you can.

enum PizzaToppings {
  TOMATO = 1,
  BBQ = 2,
  NONE = 3,
  CREAM = 4
}

Via this, we can define the values of each key in an enum.

2. String TypeScript Enum

As it said, a string enum is an enum with values as a string. (Since I love πŸ• we make a PizzaSizes enum, I would pick XL πŸ˜…*.)*

enum PizzaSizes {
  Small = "s",
  Medium = "m",
  Large = "l",
  XL = "xl",
  XXL = "XXL"
}

Via this enum, we can get string values from our enum. Super handy if you use them a lot in your application and the string value has to change πŸ˜‰.

All these enum members are constant. But if you like to have them depending on another data type, you can make them computed.

enum PizzaSizes {
  Small = "s",
  Medium = "m",
  Large = "l",
  XL = "xl",
  XXL = "XXL"
  Custom = stringValueFromVar.length
}

I haven't used this, but it's possible according to the TypeScript documentation.

3. Hetrogeneous TypeScript Enums

A what you might ask? That's what I thought, haha! But it means an enum can have mixed values, strings, and numbers. (What Pizza Type do you prefer? I haven't tried a vegan Pizza yet πŸ˜…*)*

enum PizzaTypes {
  Vegan = 0,
  NonVegan = "No meat"
}

Now we have a PizzaTypes enum with both numeric and string values.

divider-byrayray.png

How To Get Single Value From A TypeScript Enum?

Sometimes you need a single value from your enum in your application.

Let's create a part of the receipt the customer receives when ordering the pizzas.

enum PizzaFlavours {
  Peperoni = "peperoni",
  Texas= "texas",
  Tuna = "tuna",
  Hawai = "hawai", 
}

enum PizzaToppings {
  TOMATO = 1,
  BBQ = 2,
  NONE = 3,
  CREAM = 4
}

enum PizzaSizes {
  Small = "s",
  Medium = "m",
  Large = "l",
  XL = "xl",
  XXL = "xxl"
}

const receiptTitle = `Pizza ${PizzaFlavours[Peperoni]} ${PizzaSizes[XXl]} with topping ${PizzaToppings[TOMATO] }` 
// value = "Pizza peperoni XXL with topping 1"

In a real-world scenario, the types and flavors will not be defined as an enum in TypeScript but will come from the backend API. But for this example, it works great.

How To Get Values From A TypeScript Enum?

Now that we know how to get a value from our TypeScript enum, we can dive into our goal to get the multiple values into a JavaScript Array.

It’s pretty simple with the Object.keys() .

Slide the preview to left and click console to see the result πŸ‘†

In the example, you can see that the console will output an Array. With both the keys and values of the enum, we can prevent that with the .filter().

Slide the preview to left and click console to see the result πŸ‘†

Now we can see that in the console, it will only show the strings of the values.

divider-byrayray.png

How To Create A Generic Utility Function For Re-usability

Now that we know our code works, we can create a super handy utility function that can turn all our enums (both string and numeric enums) into JavaScript Arrays.

Slide the preview to left and click console to see the result πŸ‘†

And with this function, we can see that the function works with both string and numeric enums. πŸ‘

divider-byrayray.png

Thanks!

hashnode-footer.png

After reading this story, I hope you learned something new or are inspired to create something new! πŸ€— If so, consider subscribing via email (scroll to the top of this page) or follow me here on Hashnode.

Did you know that you can create a Developer blog like this one, yourself? It's entirely for free. πŸ‘πŸ’°πŸŽ‰πŸ₯³πŸ”₯

If I left you with questions or something to say as a response, scroll down and type me a message. Please send me a DM on Twitter @DevByRayRay when you want to keep it private. My DM's are always open 😁

Did you find this article valuable?

Support Dev By RayRay by becoming a sponsor. Any amount is appreciated!

Β