xxxxxxxxxx
if(
objectName // Verify object presence
&& Object.keys(objectName).length === 0 // Verify object content
&& Object.getPrototypeOf(objectName) === Object.prototype // Verify object type
) {
// Run truthy condition.
}
xxxxxxxxxx
const empty = {};
/* -------------------------
Plain JS for Newer Browser
----------------------------*/
Object.keys(empty).length === 0 && empty.constructor === Object
// true
/* -------------------------
Lodash for Older Browser
----------------------------*/
_.isEmpty(empty)
// true
xxxxxxxxxx
const empty = {};
/* -------------------------
Plain JS for Newer Browser
----------------------------*/
Object.keys(empty).length === 0 && empty.constructor === Object
// true
/* -------------------------
Lodash for Older Browser
----------------------------*/
_.isEmpty(empty)
// true
xxxxxxxxxx
const emptyObject = {
}
// Using keys method of Object class
let isObjectEmpty = (object) => {
return Object.keys(object).length === 0;
}
console.log(isObjectEmpty(emptyObject)); // true
// Using stringify metod of JSON class
isObjectEmpty = (object) => {
return JSON.stringify(object) === "{}";
}
console.log(isObjectEmpty(emptyObject)); // true
xxxxxxxxxx
const obj = {};
const obj2 = { n: 1 };
function isObjectEmpty(object) {
for (const key in object) {
return !object.hasOwnProperty(key);
}
return true;
}
console.log("1", isObjectEmpty(obj));
console.log("2", isObjectEmpty(obj2));