Returns whether all the elements in the given objects are not null or undefined
Optional
the objects to check
whether all the elements in the given objects are not null or undefined
allNotNil([null, undefined]); // falseallNotNil([null, {}]); // falseallNotNil(['foo', 'bar']); // true Copy
allNotNil([null, undefined]); // falseallNotNil([null, {}]); // falseallNotNil(['foo', 'bar']); // true
Returns whether all the elements in the given objects are not null or undefined