If i have a JSON object as below:
jsonObj = {key1 :"", key2: "", key3:""}
Is it possible to know that all values are empty using a single function or property of JSON?
I tried jsonObj.length == 0 & also !Object.values(jsonObj).length but that doesnt work.