How To Check Falsy With Undefined Or Null?
Solution 1:
To solve your problem:
You can use not operator(!):
var n = null;
if(!n){ //if n is undefined, null or falseconsole.log('null');
} else{
console.log('has value');
}
// logs nullTo answer your question:
It is considered falsy or truthy for Boolean. So if you use like this:
var n = Boolean(null);
if(n===false){
console.log('null');
} else{
console.log('has value');
}
//you'll be logged nullSolution 2:
You can check for falsy values using
var n = null;
if (!n) {
    console.log('null');
} else {
    console.log('has value');
}
Demo: Fiddle
Or check for truthiness like
var n = null;
if (n) { //true if n is truthyconsole.log('has value');
} else {
    console.log('null');
}
Demo: Fiddle
Solution 3:
A value being "falsy" means that the result of converting it to a Boolean is false:
Boolean(null) // falseBoolean(undefined) // false// butBoolean("0") // trueThis is very different from comparing it against a Boolean:
null == false// not equal, null == true is not equal eitherundefined == false// not equal, undefined == true is not equal either// but"0" == true// not equal, however, `"0" == false` is equalSince you are using strict comparison, the case is even simpler: the strict equality comparison operator returns false if operands are not of the same data type. null is of type Null and false is of type Boolean.
But even if you used loose comparison, the abstract equality algorithm defines that only null and undefined are equal to each other.
Depending on what exactly you want to test for, you have a couple of options:
if (!value)         //trueforall falsy values
if (value==null)  //truefornulland undefined
if (value===null) //truefornullIn general you should always prefer strict comparison because JS' type conversion rules can be surprising. One of the exceptions is comparing a value against null, since loose comparison also catches undefined.
Solution 4:
=== checks for identity - the exact same type and value. So null !== false firstly because they are not the same type, thus will not match when using ===.
If you just want to check for any falsey value, then check with:
if (!n)
If you want to specifically check for null, then check for null like this:
if (n === null)
Post a Comment for "How To Check Falsy With Undefined Or Null?"