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 bigger than the right side, return true.
Syntax
x > y;
//this returns true when x is bigger than y.
Example Code
if (x > y) { // see if x is bigger than y
// do something if x is bigger than y
}