The only difference between the two is that this is an expression:
a == true && alert("a is true");
But this is a statement:
if (a == true) {
alert('a is true');
}
The outcome of the expression depends on what a == true evaluates to.
false && alert('a is true'); // false (and alert box does not show up)
true && alert('a is true'); // undefined (after alert box is clicked away)
This works thanks to the "short circuit" behaviour of evaluating expressions; using &&, the first condition that's falsy will become the result of the expression without evaluating the rest.
Another operator that has similar kind of behaviour is the logical or ||. Consider:
a || alert('a is false');
This shows the alert box if a evaluates to falsy.
false || alert('a is false'); // undefined (after alert box is clicked away)
true || alert('a is false'); // true (alert box does not show up)
Note that expressions with side effects like these are considered "clever" solutions; they may shorten your code, but the original intent is not always obvious.
That said, there are good uses of this as well, for instance:
a = a || 'default value';
This will assign a default value to a if it's falsy and the original value of a otherwise. You can see these expressions quite often and they're a powerful feature of the language.