I am dealing with an array of objects and I need to check if the "value" for a specific "key" in any of the objects is "null". For example:
var array =
[{name:{} address : "something"},
{name:null address : "something2"},
{name:{} address : "something23"}]
In the scenario above, my goal is to determine if any of the name
object is null, and then return false
I would appreciate any assistance or guidance on where to find more information regarding this issue.