Parameters & Returns
Parameters
This function takes no parameters.
Returns
Quick Summary
Logical NOT operator - inverts a boolean value
Technical Exegesis...
Logical NOT operator - inverts a boolean value. Returns 1 (true) if the operand is 0 (false), and returns 0 (false) if the operand is non-zero (true). Used to reverse the meaning of a condition. Commonly used with If statements to test for the opposite of a condition or to check if something is false.