I currently am dealing with a Web Service that is returning an array of strings to the client. From here I would like to take this array of strings and convert it into an o
I don't think jQuery has to be used here.
var result = ["test", "hello", "goodbye"]; var final = []; for(var i = 0; i < result.length; i++) { final.push({value: result[i]}) }