null coalescing

$a or $b

Alternative logical or

Tags
true or false; // true
false or false; // false

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

 1.0+