how to check an object array is not empty javascript code example
Example: javascript check if object is empty
function isObjectEmpty(obj) {
return Object.keys(obj).length === 0;
}
function isObjectEmpty(obj) {
return Object.keys(obj).length === 0;
}