null coalescing

$a and $b

Alternative logical and

Tags
true and true; // true
true and false; // false

// Also works with truthy and falsy values:
1 and 'a'; // true
0 and ''; // false

 1.0+