+ VBScript >> Operators >> > | DevGuru

VBScript » Operators » >

Version: 1.0

The > operator determines if the first expression is greater-than the second expression.

Examples

Code:
<% 123 > 456 %>
<% "a" > "A" %>
Output:
False
True
Language(s): VBScript

See Also: