StrictnotOn this pagenotnot() function Returns the ! of its argument. It will return true when passed falsy value, and false when passed a truth value. Signature: declare function not(a: unknown): boolean; Example not(true); // falsenot(1); // falsenot(NaN); // true Try It Open Source Code