The not Statement
The not statement lets you logically not its input value and store the result in the first argument. The first argument must be a variable but the second argument can be a variable, a numeric constant, or a constant expression. The syntax of the not statement is shown below.
not x, x // x = !x (logical not - not bitwise)