Shopping Cart

•••••

Your cart is currently empty.

Script Better: Fe Nullioner

// or

function isNullOrUndefined(obj) return obj == null; // using loose equality operator fe nullioner script better

function isFalsy(obj) return !obj; // leveraging truthy/falsy values // or function isNullOrUndefined(obj) return obj == null;

function nullCheck(obj) return obj !== null && obj !== undefined; fe nullioner script better