Enumeration
An Enumeration is a special data type that allows developers to define set of predefined constants. The idea is to use descriptive names for sets of values that belong together, which makes code more readable and maintainable.

Last updated