Home

Published

- 1 min read

check if object is empty javascript

img of check if object is empty javascript

The solution for this is noted below

check if object is empty javascript

Solution

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

Try other methods by searching on the site. That is if this doesn’t work