Checks if the given object is not null or undefined.
exists(123); // true exists(0); // true exists(undefined); // false exists(null); // false
The value to check.
Whether the value is not null or undefined.
Generated using TypeDoc
Checks if the given object is not null or undefined.
exists(123); // true exists(0); // true exists(undefined); // false exists(null); // false