How to create enum like type in TypeScript?

Sometimes, we want to create enum like type in TypeScript.

In this article, we’ll look at how to create enum like type in TypeScript.

How to create enum like type in TypeScript?

To create enum like type in TypeScript, we can use the enum keyword.

For instance, we write

enum Fruit {
  APPLE,
  ORANGE,
}

to create the Fruit enum with the APPLE and ORANGE values.

Conclusion

To create enum like type in TypeScript, we can use the enum keyword.