$a < $b Less than Tags < less than Related $a <= $b $a > $b $a >= $b 2 < 3; // true // This comparison uses loose type checks and juggles types: 2 < 2.0; // false 2 < '2'; // false 1.0+