Answers for "to check the object is empty in js"

15

javascript check empty object

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

Code answers related to "to check the object is empty in js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language