null coalescing

$a && $b

Logical and

Tags
true && true; // true
true && false; // false

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

 1.0+