how to check the object is empty in javascript code example
Example 1: javascript check if object is empty
function isObjectEmpty(obj) {
return Object.keys(obj).length === 0;
}
Example 2: how to check if object is empty javascript
function isEmptyObject(obj) {
return !Object.keys(obj).length;
}
Example 3: javascript test for empty object
Object.entries(obj).length === 0 && obj.constructor === Object
Example 4: how to check if a javascript object is empty
function isEmpty(obj) { return Object.keys(obj).length === 0;}
Example 5: es6 check if the object is empty
Object.entries(objectToCheck).length === 0
Example 6: javascript create object empty
var empty_obj = {};