in JavaScript by
What is an enum?

1 Answer

0 votes
by

An enum is a type restricting variables to one value from a predefined set of constants. JavaScript has no enums but typescript provides built-in enum support.

enum Color {
 RED, GREEN, BLUE
}
...