Speeding Up Enum

In this lesson, you will see how it is possible to improve the performance of enum.

Setting enum as const to increase speed

enum can be set as a constant to speed up the performance. This way, during execution, instead of referencing the function generated by TypeScript to JavaScript, it will use the value.

For example, without constant enum, ...