Returns whether any of the given elements is not true
Optional
the elements to check
whether any of the given elements is not true
anyNotTrue([null, undefined]); // trueanyNotTrue([null, true]); // trueanyNotTrue([null, false]); // true Copy
anyNotTrue([null, undefined]); // trueanyNotTrue([null, true]); // trueanyNotTrue([null, false]); // true
Returns whether any of the given elements is not true