So überprüfen Sie null oder leer in TypenScript
if(typeof propertyValue!='undefined' && propertyValue){
//execute code here
}
akademik
if(typeof propertyValue!='undefined' && propertyValue){
//execute code here
}
if(typeof namedProperty!='undefined' && namedProperty){
return this.namedProperty;
}