how to check object is empty or not in javascript using if condition 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;}