js is object emtpy 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 a javascript object is empty
function isEmpty(obj) { return Object.keys(obj).length === 0;}