JavaScript enum variable allows you to create a collection of integer based constant values. While working with JavaScript variables instead of creating individual variable for constants you must use JavaScript enum variable to store integer based values. JavaScript enum is an enumeration type collection that stores the items with comma separation “,” and its corresponding integer value separated with colon “:”. Pair of item and integer value represents the variable with constant value. JavaScript enum type variables and their values provide the systematic code pattern as well as readability and understanding for the code. You can easily get the integer value associated with the named enum type item.

Following are the different styles to create the JavaScript enum type variables:

Example 1

var Days = {"sunday" : 0, "monday" : 1, "tuesday" : 3, "wednesday" : 4, "thursday" : 5, "friday" : 6, "saturday" : 7};

document.write(Days.friday);

Example 2

function Enum() {}

Enum.ColorType = {red:0, blue:1, green:2}

document.write(Enum.ColorType.blue);

Example 3

var enumObj = new Object();

enumObj.fontSize = {small:10, medium:12, large:14}

document.write(enumObj.fontSize.small);

You can also assign a new value to the enum variable e.g.:

enumObj.fontSize.small = 9;

No comments yet.

Leave a Comment

All fields are required. Your email address will not be published.

Recent JavaScript Tutorials

JavaScript if-else Ternary Operator

The JavaScript conditional ternary operator is considered as shorthand for if-else statement that is frequently used to return the result in single code statement. It takes three operands to return ...

JavaScript do…while Loop

do...while loop in JavaScript works like while loop in JavaScript the only difference is that do block executes at least once before while loop’s test condition. That’s why do block ...

JavaScript while Loop

while loop in JavaScript works same like for loop in JavaScript but in a little bit different manner. while loop runs until the condition is true and exits when the ...

JavaScript for Loop

for loop in JavaScript is most often used to execute a block of code with different value each time. So, to reduce the code length instead of adding number of ...

JavaScript switch-case Statement

To execute a single block of code satisfying a condition in case statement of JavaScript switch-case is used. break keyword is used in every case statement to exit the switch ...

Recent Comments