check if an object does not have empty strings javascript code example
Example 1: js check if object is empty
> !!Object.keys(obj).length;
Example 2: how to check if a javascript object is empty
function isEmpty(obj) { return Object.keys(obj).length === 0;}