Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What is the preferred syntax for defining enums in JavaScript? Something like:

my.namespace.ColorEnum = {
    RED : 0,
    GREEN : 1,
    BLUE : 2
}

// later on

if(currentColor == my.namespace.ColorEnum.RED) {
   // whatever
}

Or is there a more preferable idiom?

share|improve this question
I was taking a test on Javascript 1.8 on odesk and they asked what is supposed to solve enumerations in javascript, the 2 obvious answers were either the let keyword or generators. I vaguely remember enums in my c++ course, and really don't know what generators are; but potentially this helps. – Devin G Rhode Aug 1 '11 at 6:00

10 Answers

up vote 122 down vote accepted

This isn't much of an answer, but I'd say that works just fine, personally

Having said that, since it doesn't matter what the values are (you've used 0, 1, 2), I'd use a meaningful string in case you ever wanted to output the current value.

share|improve this answer

Alerting the name is already possible:

if(currentColor == my.namespace.ColorEnum.RED) {
   // alert name of currentColor (RED: 0)
   var col = my.namespace.ColorEnum;
   for (var name in col) {
     if (col[name] == col.RED)
       alert(name);
   } 

}

Alternatively, you could make the values objects, so you can have the cake and eat it to:

var SIZE = {
  SMALL : {value: 0, name: "Small", code: "S"}, 
  MEDIUM: {value: 1, name: "Medium", code: "M"}, 
  LARGE : {value: 2, name: "Large", code: "L"}
};

var currentSize = SIZE.MEDIUM;
if (currentSize == SIZE.MEDIUM) {
  // this alerts: "1: Medium"
  alert(currentSize.value + ": " + currentSize.name);
}

In Javascript, as it is a dynamic language, it is even possible to add enum values to the set later:

// Add EXTRALARGE size
SIZE.EXTRALARGE = {value: 3, name: "Extra Large", code: "XL"};

Remember, the fields of the enum (value, name and code in this example) are not needed for the identity check and are only there for convenience. Also the name of the size property itself does not need to be hardcoded, but can also be set dynamically. So supposing you only know the name for your new enum value, you can still add it without problems:

// Add 'Extra Large' size, only knowing it's name
var name = "Extra Large";
SIZE[name] = {value: -1, name: name, code: "?"};

Ofcourse this means that some assumptions can no longer be made (that value represents the correct order for the size for example).

Remember, in Javascript an object is just like a map or hashtable. A set of name-value pairs. You can loop through them or otherwise manipulate them without knowing much about them in advance.

E.G:

for (var sz in SIZE) {
  // sz will be the names of the objects in SIZE, so
  // 'SMALL', 'MEDIUM', 'LARGE', 'EXTRALARGE'
  var size = SIZE[sz]; // Get the object mapped to the name in sz
  for (var prop in size) {
    // Get all the properties of the size object, iterates over
    // 'value', 'name' and 'code'. You can inspect everything this way.        
  }
} 

And btw, if you are interested in namespaces, you may want to have a look at my solution for simple but powerful namespace and dependency management for javascript: Packages JS

share|improve this answer
1  
+1 I like your alternative a lot! – Blindy Jul 24 '10 at 20:22
so then how would you go and create simply a SIZE if you only have its name? – Johanisma Nov 10 '11 at 4:06
1  
@Johanisma: That use case does not realy make sense for enums as the whole idea of them is that you know all values in advance. However there is nothing stopping you from adding extra values later in Javascript. I will add an example of that to my answer. – Stijn de Witt Nov 29 '11 at 10:43

I can't post comment to THE answer, so I guess I'd bump the thread since it shows up high in Google.

Since 1.8.5 it's possible to seal and freeze the object, so define the above as:

var DaysEnum = Object.freeze({"monday":1, "tuesday":2, "wednesday":3, ...})

or

var DaysEnum = {"monday":1, "tuesday":2, "wednesday":3, ...}
Object.freeze(DaysEnum)

and voila! JS enums ;)

source: https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Object/freeze

IMHO quotes aren't needed but I kept them for consistency.

share|improve this answer
3  
According to Wikipedia (en.wikipedia.org/wiki/JavaScript#Versions) it's applicable to Firefox 4, IE 9, Opera 11.60 and I know it works in Chrome. – Artur Czajka Mar 15 '12 at 11:05
15  
This is the right answer now in 2012. More simple: var DaysEnum = Object.freeze ({ monday: {}, tuesday: {}, ... });. You don't need to specify an id, you can just use an empty object to compare enums. if (incommingEnum === DaysEnum.monday) //incommingEnum is monday – Gabriel Llamas Apr 7 '12 at 10:29
5  
For backward compatibility, if (Object.freeze) { Object.freeze(DaysEnum); } – saluce Aug 24 '12 at 15:56
1  
I'd like to point out that doing ({ monday: {}, etc. means that if you convert that object to JSON via stringify you'll get [{"day": {}}] which isn't gonna work. – jcollum Feb 1 at 0:20
1  
@StijndeWitt I'm pretty sure that stringify turns an object into "propname": "propvalue" -- in this case the prop value is an empty object (if the incoming object looks like {day: DaysEnum.monday}). – jcollum Feb 1 at 22:47
show 9 more comments

Bottom line: You can't.

You can fake it, but you won't get type safety. Typically this is done by creating a simple dictionary of string values mapped to integer values. For example:

var DaysEnum = {"monday":1, "tuesday":2, "wednesday":3, ...}

Document.Write("Enumerant: " + DaysEnum.tuesday);

The problem with this approach? You can accidentally redefine your enumerant, or accidentally have duplicate enumerant values. For example:

DaysEnum.monday = 4; // whoops, monday is now thursday, too

Edit

What about Artur Czajka's Object.freeze? Wouldn't that work to prevent you from setting monday to thursday? – Fry Quad

Absolutely, Object.freeze would totally fix the problem I complained about. I would like to remind everyone that when I wrote the above, Object.freeze didn't really exist.

Now.... now it opens up some very interesting possibilities.

Edit 2
Here's a very good library for creating enums.

http://www.2ality.com/2011/10/enums.html

While it probably doesn't fit every valid use of enums, it goes a very long way.

share|improve this answer
40  
there is type safety in javascript ? – Scott Evernden Aug 21 '09 at 21:02
2  
So don't map values to object properties. Use getter to access enumerant (stored as a property of, say, "private" object). A naive implementation would look like - var daysEnum = (function(){ var daysEnum = { monday: 1, tuesday: 2 }; return { get: function(value){ return daysEnum[value]; } } })(); daysEnum.get('monday'); // 1 – kangax Aug 22 '09 at 3:20
@Scott Evernden: point taken. @kangax: the point is that it's still a hack. Enums simply don't exist in Javascript, period, end of story. Even the pattern suggested by Tim Sylvester is still a less than ideal hack. – Randolpho Aug 22 '09 at 20:14
3  
@Randolpho: What about Artur Czajka's Object.freeze? Wouldn't that work to prevent you from setting monday to thursday? – Michael Jan 5 '12 at 15:58
1  
@FryQuad You brought up a good point. I edited my post in reply. – Randolpho Jan 5 '12 at 16:44
show 1 more comment

Here's what we all want:

function Enum(constantsList) {
    for (var i in constantsList) {
        this[constantsList[i]] = i;
    }
}

Now you can create your enums:

var YesNo = new Enum(['NO', 'YES']);
var Color = new Enum(['RED', 'GREEN', 'BLUE']);

By doing this, constants can be acessed in the usual way (YesNo.YES, Color.GREEN) and they get a sequential int value (NO = 0, YES = 1; RED = 0, GREEN = 1, BLUE = 2).

You can also add methods, by using Enum.prototype:

Enum.prototype.values = function() {
    return this.allValues;
    /* for the above to work, you'd need to do
            this.allValues = constantsList at the constructor */
};


Edit - small improvement - now with varargs: (unfortunately it doesn't work properly on IE :S... should stick with previous version then)

function Enum() {
    for (var i in arguments) {
        this[arguments[i]] = i;
    }
}

var YesNo = new Enum('NO', 'YES');
var Color = new Enum('RED', 'GREEN', 'BLUE');
share|improve this answer

If you're using Backbone, you can get full-blown enum functionality (find by id, name, custom members) for free using Backbone.Collection.

// enum instance members, optional
var Color = Backbone.Model.extend({
    print : function() {
        console.log("I am " + this.get("name"))
    }
});

// enum creation
var Colors = new Backbone.Collection([
    { id : 1, name : "Red", rgb : 0xFF0000},
    { id : 2, name : "Green" , rgb : 0x00FF00},
    { id : 3, name : "Blue" , rgb : 0x0000FF}
], {
    model : Color
});

// Expose members through public fields.
Colors.each(function(color) {
    Colors[color.get("name")] = color;
});

// using
Colors.Red.print()
share|improve this answer
Very cool! Thanks for the tip! – Abe Petrillo Mar 20 at 14:44

This is the solution that I use.

function Enum() {
    this._enums = [];
    this._lookups = {};
}

Enum.prototype.getEnums = function() {
    return _enums;
}

Enum.prototype.forEach = function(callback){
    var length = this._enums.length;
    for (var i = 0; i < length; ++i){
        callback(this._enums[i]);
    }
}

Enum.prototype.addEnum = function(e) {
    this._enums.push(e);
}

Enum.prototype.getByName = function(name) {
    return this[name];
}

Enum.prototype.getByValue = function(field, value) {
    var lookup = this._lookups[field];
    if(lookup) {
        return lookup[value];
    } else {
        this._lookups[field] = ( lookup = {});
        var k = this._enums.length - 1;
        for(; k >= 0; --k) {
            var m = this._enums[k];
            var j = m[field];
            lookup[j] = m;
            if(j == value) {
                return m;
            }
        }
    }
    return null;
}

function defineEnum(definition) {
    var k;
    var e = new Enum();
    for(k in definition) {
        var j = definition[k];
        e[k] = j;
        e.addEnum(j)
    }
    return e;
}

And you define your enums like this:

var COLORS = defineEnum({
    RED : {
        value : 1,
        string : 'red'
    },
    GREEN : {
        value : 2,
        string : 'green'
    },
    BLUE : {
        value : 3,
        string : 'blue'
    }
});

And this is how you access your enums:

COLORS.BLUE.string
COLORS.BLUE.value
COLORS.getByName('BLUE').string
COLORS.getByValue('value', 1).string

COLORS.forEach(function(e){
    // do what you want with e
});

I usually use the last 2 methods for mapping enums from message objects.

Some advantages to this approach:

  • Easy to declare enums
  • Easy to access your enums
  • Your enums can be complex types
  • The Enum class has some associative caching if you are using getByValue a lot

Some disadvantages:

  • Some messy memory management going on in there, as I keep the references to the enums
  • Still no type safety
share|improve this answer

Excuse me please if I sound indifferent, I'm just trying to understand the logic.

The reason we use Enum in strongly typed languages is to pin down the values being passed around at design time. Seems (to me) like this is unnecessary overhead for js.

TeamNFLEnum.FORTY_NIENERS
// is undefined 
// won't cause an error
// can be assigned any value

Object.freeze looks promising (though there is still no design time error), but 1.8.5 at this point is Firefox 4 / Thunderbird 3.3 / SeaMonkey 2.1. / Internet Explorer 9 standards document mode..., which represents some 15% of my customers :(

What advantage do you see gained by creating a "fake" enum?

Thanks.

share|improve this answer
2  
For me the advantage is in having a central point where those values (enumerations) are defined. So it's about maintainability and readibility. You could make the code more foolprof e.g. by adding an equals method to TeamNFLEnum and using that to check for equality instead of the == or === operator, and throwing an error when undefined is encountered. – simon Nov 25 '11 at 12:13
No, the reason we have Enums is so that we can have a particular list with immutable values. For a pure JS project, sure whatever. But if you are using html + js as a front end to something written in an enum happy language then you need to be able to mirror that enum. It is only polite. – Dirk Bester Feb 19 at 23:39
We're both clear about what an ENUM does. "so that we can have a particular list with immutable values" is what I meant by "pin down the values being passed around at design time" I'm pointing out that the benefit of ENUMS is the design time error a good IDE gives us when we mistype the value. An object with capitalized values is just as well intentioned but less valuable as appropriate inline documentation. – Shanimal Feb 20 at 0:41

I've modified the solution of Andre 'Fi':

  function Enum() {
    var that = this;
    for (var i in arguments) {
        that[arguments[i]] = i;
    }
    this.name = function(value) {
        for (var key in that) {
            if (that[key] == value) {
                return key;
            }
        }
    };
    this.exist = function(value) {
        return (typeof that.name(value) !== "undefined");
    };
    if (Object.freeze) {
        Object.freeze(that);
    }
  }

Test:

var Color = new Enum('RED', 'GREEN', 'BLUE');
undefined
Color.name(Color.REDs)
undefined
Color.name(Color.RED)
"RED"
Color.exist(Color.REDs)
false
Color.exist(Color.RED)
true
share|improve this answer

See http://www.codeproject.com/Articles/60661/Visual-Studio-JavaScript-Intellisense-Revisited.aspx

Although the context of the post is Visual Studio intellisense, the enum pattern may make sense. or not. YMMV

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.