check for null and make into empty string js code example
Example 1: js if string not empty
if (!str.length) { ...
Example 2: javascript check for null variables
var myVar=null;
if(myVar === null){
//I am null;
}
if (typeof myVar === 'undefined'){
//myVar is undefined
}