I have a data object with nested arrays. I'm wondering if Underscore can find the value inside an array inside the object.
Example:
var data = {
'a': 'value',
'b': 'value2',
'c': [ 'value3', 'value4', 'value5']
}
_.where(data, { c: 'value4' });
You can use _.filter()
instead:
_.filter(data, function(item){
return _.contains(item, "value4");
});
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With