I have an object like this coming back as a JSON response from the server:
{\"0\":\"1\",\"1\":\"2\",\"2\":\"3\",\"3\":\"4\"}
I want to conv
This is best solution. I think so.
Object.keys(obj).map(function(k){return {key: k, value: obj[k]}})