Returns whether any of the elements in the given objects is null or undefined
Optional
the objects to check
whether any the elements in the given objects is null or undefined
anyNil([null, undefined]); // trueanyNil([null, {}]); // trueanyNil(['foo', 'bar']); // false Copy
anyNil([null, undefined]); // trueanyNil([null, {}]); // trueanyNil(['foo', 'bar']); // false
Returns whether any of the elements in the given objects is null or undefined