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
David Hsing
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