check object value is empty code example
Example 1: how to check if object is empty javascript
function isEmptyObject(obj) {
return !Object.keys(obj).length;
}
Example 2: check undefined object javascript one liner set to emtpy
console.log(myVar == null ? myVar.myProp : 'fallBackValue');