check if object keys has no blank value code example
Example: how to check if object is empty javascript
function isEmptyObject(obj) {
return !Object.keys(obj).length;
}
function isEmptyObject(obj) {
return !Object.keys(obj).length;
}