javascript check if null or empty code example
Example 1: javascript is not null
if(data !== null && data !== '') {
}
Example 2: javascript check if not null
if (myVar !== null) {...}
if (myVar) {...}
Example 3: javascript check if object is null or empty
if (typeof value !== 'undefined' && value) {
};
Example 4: javascript check if null
if (variable === null) {
}
if (variable == null) {
}
Example 5: javascript check for null variables
var myVar=null;
if(myVar === null){
}
if (typeof myVar === 'undefined'){
}
Example 6: javascript check if undefined or null or empty string
if (myString) {
}