This question is unique as it pertains to objects of arrays rather than arrays of objects. I am working with a data structure like the one below and my goal is to determine if any of the arrays inside the object have values.
What I'm looking for is a simple true/false response indicating whether any of the arrays contain at least one value. I also appreciate efforts made towards finding a solution in my own answer.
let pendingAdditions = {
hospitals: ['Silencio Hospital','St Judes'],
licenses: ['poetic license'],
medschools: []
}