There is an array of the form:
var mass_elem = { "A1" : { "bend" : "198", "asp" : "155", "m2" : "32" }, "A2" : { "bend" : "100", "asp" : "155", "m2" : "32" }, "A3" : { "bend" : "55", "asp" : "155", "m2" : "32" }, } Like this array you can make an array of the form:
var mass_elem_2 = { "A1": "198", "A2": "100", "A3": "55", } That is, you need to leave the value from the bend field, and instead of the bend key, the key of the mass_elem array. And the rest of the field to remove.