how to check an object is empty or not code example
Example 1: how to check if object is empty javascript
function isEmptyObject(obj) {
return !Object.keys(obj).length;
}
Example 2: how to check if a javascript object is empty
function isEmpty(obj) { return Object.keys(obj).length === 0;}