up vote 2 down vote favorite
2
share [g+] share [fb]

I need to emulate enum type in Javascript and approach seems pretty straight forward:

var MyEnum = {Left = 1; Right = 2; Top = 4; Bottom = 8}

Now, in C# I could combine those values like this:

MyEnum left_right = MyEnum.Left | MyEnum.Right

and then I can test if enum has certain value:

if (left_right && MyEnum.Left == MyEnum.Left) {...}

Can I do something like that in Javascript?

link|improve this question

Note that the object syntax is wrong for MyEnum. CMS already provided a corrected example in his answer. – Justin Love Oct 26 '09 at 18:49
feedback

3 Answers

up vote 6 down vote accepted

In javascript you should be able to combine them as:

var left_right = MyEnum.Left | MyEnum.Right;

Then testing would be exactly as it is in your example of

if ( (left_right & MyEnum.Left) == MyEnum.Left) {...}
link|improve this answer
4  
Shouldn't you use | and & (bitwise OR and AND instead of boolean)? – Rytmis Oct 26 '09 at 18:12
Whoops, thanks for the catch. Edited – Mike Clark Oct 26 '09 at 18:22
feedback

You just have to use the bitwise operators:

var myEnum = {
  left: 1,
  right: 2,
  top: 4,
  bottom: 8
}

var myConfig = myEnum.left | myEnum.right;

if (myConfig & myEnum.right) {
  // right flag is set
}

More info:

link|improve this answer
1  
I wish I could mark both Mike Clark's and your answers, but I can only do one and Mike has much less points, so I think you won't be upset if I mark his answer :) – Andrey Oct 26 '09 at 20:16
@Andrey: Don't worry!, Mike's answer is also completely valid :-) – CMS Oct 27 '09 at 7:13
feedback

Yes, bitwise arithmetic works in Javascript. You have to be careful with it because Javascript only has the Number data type, which is implemented as a floating-point type. But, values are converted to signed 32-bit values for bitwise operations. So as long as you don't try to use more than 31 bits, you'll be fine.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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