Yes, there's a difference. Taking your example into account,
var a = 0,
b = 1;
Now let's look at the switch statement:
switch (a || b) {
When this switch statement is run, the expression a || b is evaluated. || is a short-circuit operator, it will return the left operand's value if it's "truthy", else it will return the right operand's value. In this case, a = 0, so b will be returned (1). Now look at the case statement:
case true:
When evaluating case statements, no type coercion is performed on either value and strict equality is assumed. In our example, this is the same as writing 1 === true, so the code following the case statement is never run. So let's take a look at the if statement:
if (a || b) {
For an if statement, the conditional expression a || b is evaluated and then the result is converted to a boolean. Internally, this looks like ToBoolean(a || b). Since a || b evaluates to 1 and coercion of 1 to a boolean is true, the condition passes and the block executes.
A better equivalent would be:
if ((a || b) === true) {
// do some stuff
}
else {
// do other stuff
}
As already pointed out, in situations where there are many cases and types could vary, a switch statement could be useful. Such a situation would be rare, however.