null coalescing

$a > $b

Greater than

Tags
3 > 2; // true

// This comparison uses loose type checks and juggles types:
2 > 2.0; // false
2 > '2'; // false

 1.0+