$two; // This statement will return true. $one < $two; // If you combine a greater than or less than symbol with an equal, // it will check if the value is greater or less than or equal to another value. $one <= $two; $one >= $two; // You can also check that two values are equal and of the same type // by using three equal signs. // This returns true. 1 == '1'; // This returns false. 1 === '1';