@bugz
Programmer!
Nothing here yet.
Nothing here yet.
No blogs yet.
The simplest way would be to first filter the array then map it. Here is the code: ArrayOfObj.filter((obj) => obj.age == 30).map((obj) => obj.name) or ArrayOfObj.filter(function(obj) { return obj.age == 30}).map(function(obj) { return obj.name})