what is not of empty object javascript code example
Example 1: javascript check if object is empty
function isObjectEmpty(obj) {
return Object.keys(obj).length === 0;
}
Example 2: check if js object is empty
JSON.stringify({}) !== '{}';
function isObjectEmpty(obj) {
return Object.keys(obj).length === 0;
}
JSON.stringify({}) !== '{}';