this object has properties, but no values, or at least empty arrays. I would like to do a condition checking if the object test has no content in the array then return true.
const test = {
"106596": [],
"107014": []
};
const output = Object.entries(clientData).every(element => Object.values(element).some(val => val === "");
console.log(output);