var tickers = [];
for (var i=0; i<reportsArray.length; i++) {
tickers.push(reportsArray[i].ticker);
}
Is there a more efficient way to achieve the same result using lodash library? You can find more information about lodash here.
Here is an example of how objects in the reportsArray may be structured:
{
added_epoch: 1452873186
details: ""
reason: ""
term: "Google rocks!"
ticker: "GOOG"
user_id: 1346753
username: "leon"
}