ERI've started working remotely 4 years ago. I can't even think about going back and working in an office 9 to 5!Comment·Thread·Aug 9, 2019·Digital Nomad Programming ?
ERI used MailgunComment·Thread·Aug 9, 2019·Which email service is best for nodejs? Or used by hashnode?
ERThe 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})Comment·Thread·Aug 9, 2019·Create Array from Array of Objects