JS Coding Questions Logo
JS Coding Questions
#280💼 Interview💻 Code

What is an enum

Advertisement

728x90

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.

javascript
1enum Color {
2
3RED, GREEN, BLUE
4}

Advertisement

Responsive Ad
🎯 Practice NowRelated Challenge

JavaScript Coding Exercise 23

Test your knowledge with this interactive coding challenge.

Start Coding

Advertisement

728x90
280of476