check if object is not empty javascriipt 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;
}