Answers for "how to check wether the object is empty or not"

60

javascript check if object is empty

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

javascript check empty object

function isEmptyObject(obj) {
    return !Object.keys(obj).length;
}
Posted by: Guest on May-02-2020
0

is check objet empty

function isEmptyObject(obj) {
    return !Object.keys(obj).length;
}
Posted by: Guest on January-01-1970

Code answers related to "how to check wether the object is empty or not"

Code answers related to "Javascript"

Browse Popular Code Answers by Language