Let's say I have an object that looks like this: {"1": "2", "3": "4"}
I don't have direct access to this data, so when I bring it in via ajax how can I convert it to an array? Like so: [{"1": "2"}, {"3": "4"}]
PS: I'm using this output data in an angular-ui typeahead which dislikes objects and only likes strings.