$a && $b Logical and Tags && comparison logical and Related $a and $b $a || $b !$a true && true; // true true && false; // false // Also works with truthy and falsy values: 1 && 'a'; // true 0 && ''; // false 1.0+