>

Returns true if the value of the first item is greater than the value of the second item.

Syntax

valueA > valueB

Example

var foo = 5;
if (foo > 3)
    return true; //Returns true because foo == 5, which is greater than 3.
text_javascript aptana_docs