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
Well, you can always "give up" :)
function b(val){ return (val==null || val===false); }