I have the following type of array of objects, which I saved as image for you all so its easier to see:
Now what I want from this massive array is all the objects who's investments status is complete.
using the _.where, I tried to do (data being the giant array you see in the image):
var something = _.where(data, function(item){
return item.investments[0].statues === "complete"
});
But um nothing seems to happen ... What am I doing wrong? I want objects out of the array who's investments status is complete.
ideas?

._whereinstead of_.where.statusis also misspelled. If that's really in your code that will cause the failure for sure