if not empty javascript code example
Example 1: is var is not blank then display value in javascript
if(data !== null && data !== '') {
}
Example 2: js if string not empty
if (!str.length) { ...
Example 3: javascript if string empty
if (strValue) {
}
if (strValue === "") {
}
Example 4: empty string in javascript
var s;
var s = "";
s.length
Example 5: javascript check if empty
if (typeof myVar === 'undefined'){
console.log("I am not defined");
}
var emptyString="";
if (emptyString) {
console.log("im not empty");
}