Here is what my tickerTagObject array looks like:
It's an array of objects, each object contains another object + 1 array

I'm able to grab the tickers using this syntax below:
var tickerObjs = _(tickerTagObjs)
.filter(function(tiks) { return tiks; })
.pluck('ticker')
.value();
console.log(tickerObjs);
^ This gives me an array of the ticker objects
However using the same for the tags doesn't work, perhaps because the tags are an Array not an Object?
var tagObjs = _(tickerTagObjs.tags)
.filter(function(tags) { return tags; })
.pluck('tags')
.value();
console.log(tagObjs);

How would you use lodash to "pluck" the tag objects inside the array tags inside each TagsObject?