Conditional logical NOT operator not
The conditional logical NOT operator not returns true if the operand evaluates to false, and false if the operand evaluates to true.
Examples
not falsereturns true.not truereturns false.
The conditional logical NOT operator not returns true if the operand evaluates to false, and false if the operand evaluates to true.
not false returns true.not true returns false.