5 > 2
true
8 < 4
false
var a = 8
undefined
var b = 15
undefined
a > b
false
a < b
true
a <= b - 10
false
a == b
false
a != b
true