In SQL we can see if a string is in a list like so:
Column IN ('a', 'b', 'c')
What's a good way to do this in javascript? It's so clunky to do this:
if (expression1 || expression2 || str === 'a' || str === 'b' || str === 'c') {
// do something
}
And I'm not sure about the performance or clarity of this:
if (expression1 || expression2 || {a:1, b:1, c:1}[str]) {
// do something
}
Or one could use the switch function:
var str = 'a',
flag = false;
switch (str) {
case 'a':
case 'b':
case 'c':
flag = true;
default:
}
if (expression1 || expression2 || flag) {
// do something
}
But that is a horrible mess. Any ideas?
UPDATE
I didn't think to mention that in this case, I have to use IE as it's for a corporate intranet page. So ['a', 'b', 'c'].indexOf(str) !== -1 won't work natively without some syntax sugar.
For browsers that don't support indexOf here's a fully standards compliant version of the indexOf function. And here's my version (since I don't care about list position or mind traversing in reverse, this should be faster):
if (!Array.prototype.indexOf) {
Array.prototype.indexOf = function(item) {
var i = this.length;
while (i--) {
if (this[i] === item) return i;
}
}
return -1;
}