Answers for "how to check if object is empty in html"

84

javascript check if object is empty

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

how to check if object is empty javascript

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

Code answers related to "how to check if object is empty in html"

Code answers related to "Javascript"

Browse Popular Code Answers by Language