I have an array of objects, where I want to see if the "value" for a "key" in any of the objects is "null". i.e:
var array =
[{name:{} address : "something"},
{name:null address : "something2"},
{name:{} address : "something23"}]
In the above I want to check if any of the name
object is null, return false
Can anyone help or direct to the appropriate sources?