Answers for "how to check if any object has its key or value as empty strings?"

60

javascript check if object is empty

function isObjectEmpty(obj) {
    return Object.keys(obj).length === 0;
}
Posted by: Guest on July-24-2019
1

check undefined object javascript one liner set to emtpy

const isEmpty = Object.values(object).every(x => (x === null || x === ''));
Posted by: Guest on March-08-2020

Code answers related to "how to check if any object has its key or value as empty strings?"

Code answers related to "Javascript"

Browse Popular Code Answers by Language