Other than creating a function, is there a shorter way to check if a value is undefined,null or false only in JavaScript?
undefined
null
false
only shortcut for something like this that I know of is
var val; (val==null || val===false) ? false: true;