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