var tickers = [];
for (var i=0; i<reportsArray.length; i++) {
tickers.push(reportsArray[i].ticker);
}
Is there a way to replicate the above using the fastest / most efficient way in lodash.
This is what the objects may look like in the reportsArray:
{
added_epoch: 1452873186
details: ""
reason: ""
term: "Google rocks!"
ticker: "GOOG"
user_id: 1346753
username: "leon"
}
map? There's also a native implementation.