Accessing Enum Values
In this lesson, we will see how to access information from an enum.
We'll cover the following...
We'll cover the following...
TypeScript map objects to allow access
A variable set with an enum that has a number lets you access the enum name from the integer. However, an enum with string values does not have this capability. This means you can use the enum ...