Advantages compared to using symbols as enum values:
- Enum values are much more customizable. For example, one can have custom prototype and/or instance methods.
- Enum values get two custom properties:
name
provides direct access to the name of an enum value.ordinal
holds a number, the position of the enum value. Useful for some applications.
- One can use
instanceof
to test whether a value is an element of an enum. - One occasionally requested feature for enums is that enum values be numbers (e.g. for flags) or strings (e.g. to compare with values in HTTP headers). That can be achieved by making those values properties of enum values. For an example, see
enum Mode
, below.
Static properties of enums: