Not operator
From Coderwiki
More actions
The and operator is a boolean operator which will return true if the boolean value to the right of it is false.
Syntax
edit edit sourceIn many languages, the not operator uses the ! symbol.
In some other languages, a keyword is used instead: in Python, for example, this keyword is not.
Examples where not returns true
edit edit source!false
!(4 < 6)
!(7 == 8)
Examples where not returns false
edit edit source!true
!(5 == 5)
!(8 < 10)