if is empty object javascript code example
Example 1: javascript check empty object
function isEmptyObject(obj) {
return !Object.keys(obj).length;
}
Example 2: javascript check if object is null or empty
if (typeof value !== 'undefined' && value) {
//deal with value'
};