Description
Compare the value on the left side of the operator with the value on the right side of the operator. When the left side is less than the right side, return true.
Syntax
x < y;
//this returns true when x is smaller than y.
Example Code
if (x < y) { // see if x is smaller than y
// do something if x is smaller than y
}