check if object is empty javascript code example

Example 1: javascript check if object is empty

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

Example 2: check if object is empty javascript

const empty = {};
/* -------------------------
  Plain JS for Newer Browser
----------------------------*/
Object.keys(empty).length === 0 && empty.constructor === Object
// true
/* -------------------------
  Lodash for Older Browser
----------------------------*/
_.isEmpty(empty)
// true

Example 3: javascript check empty object

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

Example 4: 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 5: js check if object is empty

> !!Object.keys(obj).length;

Example 6: 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

Tags:

Misc Example