how to check object is empty in javascripot 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;}