Is there any way to make this work with a switch, syntactically?
switch(i){
case ('foo' || 'bar'):
alert('foo or bar');
break;
default:
alert('not foo or bar');
}
|
Is there any way to make this work with a switch, syntactically?
|
|||
|
|
Note: "other" isn't required, I'm just showing that you can stack cases with default as well. |
|||
|
|
|
From the official Mozilla Developer Center docs, use multiple cases like so:
Or if looking for an IE solution you would use the JScript docs for switch which refer to case conditions as "labels" and states:
Effectively both sets of documentation say the same thing about putting multiple cases together. |
||||
|
|
|
JavaScript doesn't work that way. Do it like this:
Like in C, JavaScript's |
|||
|
|
||||
|
|
|
Would something along this line work?
|
|||
|
|
switch(i)
{
case 'foo':
case 'bar':
alert('foo or bar');
break;
default:
alert('not foo or bar');
break;
}
|
|||
|
|
|
You have to set separate cases for each value.
Using your code, you'll only get the alert if |
|||
|
|
|
The problem with your example is that the expression The However, in JavaScript each
|
||||
|
|