Returns whether all the given elements are not true
Optional
the elements to check
whether all the given elements are not true
allNotTrue([null, undefined]); // trueallNotTrue([null, true]); // falseallNotTrue([null, false]); // true Copy
allNotTrue([null, undefined]); // trueallNotTrue([null, true]); // falseallNotTrue([null, false]); // true
Returns whether all the given elements are not true