null coalescing

$a || $b

Logical or

Tags
true || false; // true
false || false; // false

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

 1.0+