how to check if a object is blank in js code example
Example: javascript check if object is null or empty
if (typeof value !== 'undefined' && value) {
//deal with value'
};
if (typeof value !== 'undefined' && value) {
//deal with value'
};