I have been scouring the internet for a solution to this question, but I haven't come across anything that fits my needs.
Let's say we have an array of objects like this --
"points":[{"pt":"Point-1","value":"Java, j2ee developer"},{"pt":"Point-2","value":"Experienced in Core Java, Spring, Hibernate, JPA, Big Data, SOA, BPEL"}]
From the array above, I am looking to extract both keys and values for a specific pair so that my result appears as follows --
[{"value":"Java, j2ee developer"},{"value":"Experienced in Core Java, Spring, Hibernate, JPA, Big Data, SOA, BPEL"}]
I am aware that this can be achieved through manual looping. However, I am curious if there is a way to obtain the desired result in one go using lodash or another API without having to loop through the data. Is this possible?