FrontendDeveloper.in

JavaScript question detail

What is an enum

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
}
Back to all JavaScript questions
Get LinkedIn Premium at Rs 399