Returns whether all the elements in the given objects are null or undefined
Optional
the objects to check
whether all the elements in the given objects are null or undefined
allNil([null, undefined]); // trueallNil([null, {}]); // falseallNil([null, 'foobar']); // false Copy
allNil([null, undefined]); // trueallNil([null, {}]); // falseallNil([null, 'foobar']); // false
Returns whether all the elements in the given objects are null or undefined