js check if object is not empty 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 check if object is null or empty

if (typeof value !== 'undefined' && value) {
    //deal with value'
};

Example 4: check if js object is empty

JSON.stringify({}) !== '{}';