fjs.exists
fjs.exists returns false if an object is null or undefined (considered not to exist), all other values return true.
Usage
fjs.exists(obj);Examples
fjs.exists(undefined); // => falsefjs.exists(null); // => falsefjs.exists(1); // => truefjs.exists("abc"); // => true