Answers for "efficient way to find 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
-1

object check null or empty

Object.entries(obj).length === 0 && obj.constructor === Object
Posted by: Guest on July-21-2021

Code answers related to "efficient way to find object is empty or not"

Code answers related to "Javascript"

Browse Popular Code Answers by Language