null coalescing

$a < $b

Less than

Tags
2 < 3; // true

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

 1.0+