Javascript – group the array of objects with similar properties and get result with concatenated values
i have this array of object as follows let data = [ { "id": "12", "values": [ "_status.com", "_verify.com" ] }, { "id": "12", "values": [ "_result.com"] }, { "id": "15", "values": [ "_integrate.com"] } ] If you notice, array…