Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Operators comparing numbers

x = 2
y = 3
z = 3

x > y    # FALSE
x < y    # TRUE
x <= y   # TRUE
x >= y   # FALSE
x == y   # FALSE
x != y   # TRUE

y == z   # TRUE