typescript check if string is null or empty code example
Example 1: javascript if string empty
if (strValue) {
}
if (strValue === "") {
}
Example 2: how to check is null or empty in typescript
if(typeof propertyValue!='undefined' && propertyValue){
}
Example 3: empty string in javascript
var s;
var s = "";
s.length
Example 4: typescript if string is null or empty
function empty(e) {
switch (e) {
case "":
case 0:
case "0":
case null:
case false:
case typeof(e) == "undefined":
return true;
default:
return false;
}
}
empty(null)
empty(0)
empty(7)
empty("")
empty((function() {
return ""
}))