Answers for "how to check if an object is null or empty in javascript"

60

javascript check if object is empty

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

check object is null empty or undefined

function isRealValue(obj)
{
 return obj && obj !== 'null' && obj !== 'undefined';
}

//Use isRealValue(obj) to check further, will always return truthy object.
Posted by: Guest on July-22-2021

Code answers related to "how to check if an object is null or empty in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language