Returns whether any of the elements in the given objects is not null or undefined
Optional
the objects to check
whether any of the elements in the given objects is not null or undefined
anyNotNil([null, undefined]); // falseanyNotNil([null, {}]); // true Copy
anyNotNil([null, undefined]); // falseanyNotNil([null, {}]); // true
Returns whether any of the elements in the given objects is not null or undefined