set function to empty object javascript code example
Example 1: express check if object is empty
if(Object.keys(obj).length === 0) {
}
Example 2: javascript check if object is null or empty
if (typeof value !== 'undefined' && value) {
//deal with value'
};