Tutorial by Topics: comparisons

!= - Is not equal to == - Is equal to > - greater than < - less than >= - greater than or equal to <= - less than or equal to is - test if objects are the exact same object is not = test if objects are not the exact same object ParameterDeta...
x < y # if x is strictly less than y x > y # if x is strictly greater than y x == y # if x is equal to y x === y # alternatively x ≡ y, if x is egal to y x ≤ y # alternatively x <= y, if x is less than or equal to y x ≥ y # alternatively x >= y, if x is greater than or eq...

Page 1 of 1