object empty js code example

Example 1: javascript check if object is empty

function isObjectEmpty(obj) {
    return Object.keys(obj).length === 0;
}

Example 2: javascript check empty object

function isEmptyObject(obj) {
    return !Object.keys(obj).length;
}

Example 3: react native object is empty

//when this.state.errors object is empty 
if (Object.keys(this.state.errors).length == 0) {
  this.props.updateUser(user);
  this.props.navigation.goBack();
}

Example 4: javascript test for empty object

// because Object.entries(new Date()).length === 0;
// we have to do some additional check
Object.entries(obj).length === 0 && obj.constructor === Object