Returns whether all the given elements are true
Optional
the elements to check
whether all the given elements are true
allTrue([null, undefined]); // falseallTrue([null, true]); // falseallTrue([true, true]); // true Copy
allTrue([null, undefined]); // falseallTrue([null, true]); // falseallTrue([true, true]); // true
Returns whether all the given elements are true