Returns whether all the given elements are not false
Optional
the elements to check
whether all the given elements are not false
allNotFalse([null, undefined]); // trueallNotFalse([null, false]); // falseallNotFalse([null, true]); // true Copy
allNotFalse([null, undefined]); // trueallNotFalse([null, false]); // falseallNotFalse([null, true]); // true
Returns whether all the given elements are not false