I have a JsonArray something like this.
var json_array = [{ "text": "id", "size": 4}, { "text": "manifesto", "size": 4}, { "text": "also", "size": 4}, { "text": "leasing", "size": 4}, { "text": "23", "size": 4}];
Anyway, to get all the "text" property of this json_array in another array using Javascript / jQuery?
as:
var t_array = ["id","manifesto","also"....]
source
share