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
Boolean(val) === false. This worked for me to check if value was falsely.