I was hoping this work, but it didn't:
var myName = _(myArray)
.find({ "ID": 5 })
.get("Name");
Basically I want to find one element within an array, where ID property is equal to 5 and then get value of "Name" property of that.
What am I missing ?
Object does not support 'get' property